summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLele Gaifax <lele@metapensiero.it>2023-02-01 20:24:53 +0100
committerGitHub <noreply@github.com>2023-02-01 20:24:53 +0100
commit9ffdfbb578716d8f04fffd937e0ebc927337fd4d (patch)
tree151ae45cd3260d9b7df0b7eecb6eaf9ec81d59ff
parentd84e6f8f3c6a346daaa021440a6804ce37f3cb56 (diff)
downloadsqlalchemy-9ffdfbb578716d8f04fffd937e0ebc927337fd4d.tar.gz
Fix minor documentation glitch, replace "row" with "column" (#9215)
-rw-r--r--doc/build/orm/inheritance.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/orm/inheritance.rst b/doc/build/orm/inheritance.rst
index e99bc1df6..f54506b0a 100644
--- a/doc/build/orm/inheritance.rst
+++ b/doc/build/orm/inheritance.rst
@@ -130,7 +130,7 @@ subclasses introduce a second identity are not supported.
The ORM uses the value set up by :paramref:`_orm.Mapper.polymorphic_identity` in
order to determine which class a row belongs towards when loading rows
polymorphically. In the example above, every row which represents an
-``Employee`` will have the value ``'employee'`` in its ``type`` row; similarly,
+``Employee`` will have the value ``'employee'`` in its ``type`` column; similarly,
every ``Engineer`` will get the value ``'engineer'``, and each ``Manager`` will
get the value ``'manager'``. Regardless of whether the inheritance mapping uses
distinct joined tables for subclasses as in joined table inheritance, or all