From: Mike Bayer Date: Tue, 17 Oct 2006 18:12:00 +0000 (+0000) Subject: typo X-Git-Tag: rel_0_3_0~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0a1b25606db656de0f32996fff6d9bf6fe883263;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git typo --- diff --git a/doc/build/content/adv_datamapping.txt b/doc/build/content/adv_datamapping.txt index e46387c162..9e666ba218 100644 --- a/doc/build/content/adv_datamapping.txt +++ b/doc/build/content/adv_datamapping.txt @@ -87,7 +87,7 @@ A common request is the ability to create custom class properties that override It is also possible to route the the `select_by` and `get_by` functions on `Query` using the new property name, by establishing a `synonym`: {python} - mapper(MyClass, mytable, proeprties = { + mapper(MyClass, mytable, properties = { # map the '_email' attribute to the "email" column # on the table '_email': mytable.c.email @@ -102,7 +102,7 @@ It is also possible to route the the `select_by` and `get_by` functions on `Quer Synonym can be established with the flag "proxy=True", to create a class-level proxy to the actual property: {python} - mapper(MyClass, mytable, proeprties = { + mapper(MyClass, mytable, properties = { '_email': mytable.c.email 'email' : synonym('_email', proxy=True) })