From: Gaƫtan de Menten Date: Tue, 29 Jul 2008 08:43:30 +0000 (+0000) Subject: typo X-Git-Tag: rel_0_5beta3~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd51706903dea8336be5a77f5fe5ed2d41d0a466;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git typo --- diff --git a/doc/build/content/mappers.txt b/doc/build/content/mappers.txt index d987cc641f..85d76abd3d 100644 --- a/doc/build/content/mappers.txt +++ b/doc/build/content/mappers.txt @@ -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)