From: Mike Bayer Date: Sun, 17 Jan 2016 03:04:10 +0000 (-0500) Subject: - fix People -> Person , fixes #3628 X-Git-Tag: rel_1_1_0b1~84^2~37 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=66560cef7457d69f56cd2ca3bab93cb033a61a84;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - fix People -> Person , fixes #3628 --- diff --git a/doc/build/orm/extensions/declarative/inheritance.rst b/doc/build/orm/extensions/declarative/inheritance.rst index 684b07bfd0..59d6854565 100644 --- a/doc/build/orm/extensions/declarative/inheritance.rst +++ b/doc/build/orm/extensions/declarative/inheritance.rst @@ -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.