summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/orm/interfaces.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2009-12-28 03:22:24 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2009-12-28 03:22:24 +0000
commita572e39871a73588b19a8ce9e81a4b42148b7018 (patch)
treee0fa94bdad5581c40556349e8de283ca4673e730 /lib/sqlalchemy/orm/interfaces.py
parent25ea5bb32b092eb966c74b0068eb1c9ae7ee3da1 (diff)
downloadsqlalchemy-a572e39871a73588b19a8ce9e81a4b42148b7018.tar.gz
rest tweaks
Diffstat (limited to 'lib/sqlalchemy/orm/interfaces.py')
-rw-r--r--lib/sqlalchemy/orm/interfaces.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/orm/interfaces.py b/lib/sqlalchemy/orm/interfaces.py
index fa6b76737..f31b447bd 100644
--- a/lib/sqlalchemy/orm/interfaces.py
+++ b/lib/sqlalchemy/orm/interfaces.py
@@ -54,7 +54,7 @@ class MapperExtension(object):
New extension classes subclass ``MapperExtension`` and are specified
using the ``extension`` mapper() argument, which is a single
``MapperExtension`` or a list of such. A single mapper
- can maintain a chain of `MapperExtension`` objects. When a
+ can maintain a chain of ``MapperExtension`` objects. When a
particular mapping event occurs, the corresponding method
on each ``MapperExtension`` is invoked serially, and each method
has the ability to halt the chain from proceeding further.
@@ -69,7 +69,7 @@ class MapperExtension(object):
new instance to a result list.
The symbol EXT_STOP has significance within a chain
- of ``MapperExtension``s that the chain will be stopped
+ of ``MapperExtension`` objects that the chain will be stopped
when this symbol is returned. Like EXT_CONTINUE, it also
has additional significance in some cases that a default
mapper activity will not be performed.