diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2016-01-16 22:04:10 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2016-01-16 22:04:10 -0500 |
commit | 66560cef7457d69f56cd2ca3bab93cb033a61a84 (patch) | |
tree | fe716c0b3a1f068c77eeb228aa4292558e455ac5 | |
parent | a7cc29671493c3eee9473d688bf30900b12b87be (diff) | |
download | sqlalchemy-66560cef7457d69f56cd2ca3bab93cb033a61a84.tar.gz |
- fix People -> Person , fixes #3628
-rw-r--r-- | doc/build/orm/extensions/declarative/inheritance.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/orm/extensions/declarative/inheritance.rst b/doc/build/orm/extensions/declarative/inheritance.rst index 684b07bfd..59d685456 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. |