summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2006-10-17 18:12:00 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2006-10-17 18:12:00 +0000
commit0a1b25606db656de0f32996fff6d9bf6fe883263 (patch)
tree197f2e95fb33674b02e3f30326681acac1cbcefc /doc
parent4d2be119f05ef2dfb431830f142e7502da418e93 (diff)
downloadsqlalchemy-0a1b25606db656de0f32996fff6d9bf6fe883263.tar.gz
typo
Diffstat (limited to 'doc')
-rw-r--r--doc/build/content/adv_datamapping.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/build/content/adv_datamapping.txt b/doc/build/content/adv_datamapping.txt
index e46387c16..9e666ba21 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)
})