summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/orm/mapper.py
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2016-05-03 22:47:23 +0300
committerVille Skyttä <ville.skytta@iki.fi>2016-05-03 22:47:23 +0300
commit49d12142b37dc5ec117a00849f92a503506a08ab (patch)
tree28e6e60ba36ae89c209b03359565690d5add3204 /lib/sqlalchemy/orm/mapper.py
parentbde46e33593805584c7c0dedb3a666909fb67888 (diff)
downloadsqlalchemy-pr/266.tar.gz
Spelling fixespr/266
Diffstat (limited to 'lib/sqlalchemy/orm/mapper.py')
-rw-r--r--lib/sqlalchemy/orm/mapper.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/sqlalchemy/orm/mapper.py b/lib/sqlalchemy/orm/mapper.py
index 2236b2f76..23be6556d 100644
--- a/lib/sqlalchemy/orm/mapper.py
+++ b/lib/sqlalchemy/orm/mapper.py
@@ -266,7 +266,7 @@ class Mapper(InspectionAttr):
:ref:`inheritance_toplevel`
- :param inherit_condition: For joined table inheritance, a SQL
+ :param inherit_condition: For joined table inheritance, an SQL
expression which will
define how the two tables are joined; defaults to a natural join
between the two tables.
@@ -396,7 +396,7 @@ class Mapper(InspectionAttr):
}
It may also be specified
- as a SQL expression, as in this example where we
+ as an SQL expression, as in this example where we
use the :func:`.case` construct to provide a conditional
approach::
@@ -436,7 +436,7 @@ class Mapper(InspectionAttr):
}
.. versionchanged:: 0.7.4
- ``polymorphic_on`` may be specified as a SQL expression,
+ ``polymorphic_on`` may be specified as an SQL expression,
or refer to any attribute configured with
:func:`.column_property`, or to the string name of one.