From 5d02b4152f61585da2c65e54ea6f33620183421b Mon Sep 17 00:00:00 2001 From: Jeff Balogh Date: Tue, 23 Jan 2024 13:25:10 -0600 Subject: [PATCH] fix a docs typo (#10912) The code following this declaration suggests the employee.type should be `sysadmin` (cherry picked from commit abadb149597e5891551b84e47d3085c3f1753ef2) --- 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 fe3e06bf0f..574b4fc739 100644 --- a/doc/build/orm/inheritance.rst +++ b/doc/build/orm/inheritance.rst @@ -638,7 +638,7 @@ using :paramref:`_orm.Mapper.polymorphic_abstract` as follows:: class SysAdmin(Technologist): """a systems administrator""" - __mapper_args__ = {"polymorphic_identity": "engineer"} + __mapper_args__ = {"polymorphic_identity": "sysadmin"} In the above example, the new classes ``Technologist`` and ``Executive`` are ordinary mapped classes, and also indicate new columns to be added to the -- 2.47.2