From: Mike Bayer Date: Wed, 20 Jan 2016 19:03:29 +0000 (-0500) Subject: - typo X-Git-Tag: rel_1_1_0b1~84^2~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=baabf3bedbdff988cf95cc04046bb87df26bf126;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - typo (cherry picked from commit b53667526eb9b2fabccfb097a5b76906d6452249) --- diff --git a/doc/build/orm/inheritance.rst b/doc/build/orm/inheritance.rst index 5645b55991..6434d7a053 100644 --- a/doc/build/orm/inheritance.rst +++ b/doc/build/orm/inheritance.rst @@ -754,7 +754,7 @@ them to each class using ``__table__``:: class Employee(Base): __table__ = employee_table __mapper_args__ = { - 'polymorphic_on':pjoin.c.type + 'polymorphic_on':pjoin.c.type, 'with_polymorphic': ('*', pjoin), 'polymorphic_identity':'employee' }