]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
typo
authorGaëtan de Menten <gdementen@gmail.com>
Tue, 29 Jul 2008 08:43:30 +0000 (08:43 +0000)
committerGaëtan de Menten <gdementen@gmail.com>
Tue, 29 Jul 2008 08:43:30 +0000 (08:43 +0000)
doc/build/content/mappers.txt

index d987cc641f10185e75d4ce42a738697ff9dacc41..85d76abd3d10ebd398504bb7d47d308b4ba8c635 100644 (file)
@@ -1482,7 +1482,7 @@ Use `passive_deletes=True` to disable child object loading on a DELETE operation
             ForeignKeyConstraint(['parent_id'],['mytable.id'], ondelete="CASCADE"),
             )
 
-        mmapper(MyOtherClass, myothertable)
+        mapper(MyOtherClass, myothertable)
         
         mapper(MyClass, mytable, properties={
             'children':relation(MyOtherClass, cascade="all, delete-orphan", passive_deletes=True)