From: Mike Bayer Date: Sun, 7 Aug 2011 05:38:18 +0000 (-0400) Subject: typo X-Git-Tag: rel_0_7_3~87 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=021720413f1749cd4ea5f993c66e0ffd9ee14890;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git typo --- diff --git a/doc/build/orm/mapper_config.rst b/doc/build/orm/mapper_config.rst index d4f3ddc0a5..4ab9c940bb 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()