]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
typo
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 7 Aug 2011 05:38:18 +0000 (01:38 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 7 Aug 2011 05:38:18 +0000 (01:38 -0400)
doc/build/orm/mapper_config.rst

index d4f3ddc0a5bd44e4633b5d36e28761b750a6f55e..4ab9c940bb3293b7b7484a25eef934b6aac94da0 100644 (file)
@@ -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()