]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fix minor documentation glitch, replace "row" with "column" (#9215)
authorLele Gaifax <lele@metapensiero.it>
Wed, 1 Feb 2023 19:24:53 +0000 (20:24 +0100)
committerGitHub <noreply@github.com>
Wed, 1 Feb 2023 19:24:53 +0000 (20:24 +0100)
doc/build/orm/inheritance.rst

index e99bc1df62ccea9380d2c4160bdb7caf14505b75..f54506b0aee84a04b1c0b051a05021a49c3cdf86 100644 (file)
@@ -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