From 49ff85bfd85a9b8e40ce3f2289238fab36901071 Mon Sep 17 00:00:00 2001 From: Diana Clarke Date: Sun, 23 Dec 2012 16:13:59 -0500 Subject: [PATCH] typo in joined table inheritance docs see #2641 --- doc/build/orm/inheritance.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/build/orm/inheritance.rst b/doc/build/orm/inheritance.rst index cf8c6dc287..e3067b0717 100644 --- a/doc/build/orm/inheritance.rst +++ b/doc/build/orm/inheritance.rst @@ -72,7 +72,7 @@ columns), and in most cases a foreign key reference to the parent table:: 'polymorphic_identity':'engineer', } - class Manager(Person): + class Manager(Employee): __tablename__ = 'manager' id = Column(Integer, ForeignKey('employee.id'), primary_key=True) manager_name = Column(String(30)) -- 2.47.3