From 021720413f1749cd4ea5f993c66e0ffd9ee14890 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sun, 7 Aug 2011 01:38:18 -0400 Subject: [PATCH] typo --- doc/build/orm/mapper_config.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- 2.47.3