]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- fix People -> Person , fixes #3628
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 17 Jan 2016 03:04:10 +0000 (22:04 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 17 Jan 2016 03:04:10 +0000 (22:04 -0500)
doc/build/orm/extensions/declarative/inheritance.rst

index 684b07bfd0abeb8214021eb79f63d35530d93368..59d68545655ef54a1df691049fff378c95162c13 100644 (file)
@@ -190,7 +190,7 @@ The same concept can be used with mixin classes (see
 
 The above mixin checks the local ``__table__`` attribute for the column.
 Because we're using single table inheritance, we're sure that in this case,
-``cls.__table__`` refers to ``People.__table__``.  If we were mixing joined-
+``cls.__table__`` refers to ``Person.__table__``.  If we were mixing joined-
 and single-table inheritance, we might want our mixin to check more carefully
 if ``cls.__table__`` is really the :class:`.Table` we're looking for.