From 0a1b25606db656de0f32996fff6d9bf6fe883263 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Tue, 17 Oct 2006 18:12:00 +0000 Subject: [PATCH] typo --- doc/build/content/adv_datamapping.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) }) -- 2.47.2