summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2011-08-07 01:38:18 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2011-08-07 01:38:18 -0400
commit021720413f1749cd4ea5f993c66e0ffd9ee14890 (patch)
treec162b9dbd7f076846c6b8820220cfebc4ad8794a
parentc4e3cb2bf5a16bfca4f42ed6729ada1040ab8690 (diff)
downloadsqlalchemy-021720413f1749cd4ea5f993c66e0ffd9ee14890.tar.gz
typo
-rw-r--r--doc/build/orm/mapper_config.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/orm/mapper_config.rst b/doc/build/orm/mapper_config.rst
index d4f3ddc0a..4ab9c940b 100644
--- a/doc/build/orm/mapper_config.rst
+++ b/doc/build/orm/mapper_config.rst
@@ -29,7 +29,7 @@ The ``User`` example in the tutorial, using classical mapping, defines the
:class:`.Table`, class, and :func:`.mapper` of the class separately. Below we illustrate
the full ``User``/``Address`` example using this style::
- from sqlalchemy import Table, Metadata, Column, ForeignKey, Integer, String
+ from sqlalchemy import Table, MetaData, Column, ForeignKey, Integer, String
from sqlalchemy.orm import mapper, relationship
metadata = MetaData()