]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fix a misreference in inheritance.rst (#11700)
authorTao Zhou <taozhou@umich.edu>
Tue, 6 Aug 2024 20:21:44 +0000 (16:21 -0400)
committerFederico Caselli <cfederico87@gmail.com>
Tue, 6 Aug 2024 20:22:50 +0000 (22:22 +0200)
(cherry picked from commit 10ac7ce5c8527240e8cc4fa65f3f7a0ba10a2f26)

doc/build/orm/queryguide/inheritance.rst

index 136bed55a600799bcfd31195373e5182a72f34a6..537d51ae59e60026c4133e7f2ba4066598ab048e 100644 (file)
@@ -128,7 +128,7 @@ objects at once.  This loader option works in a similar fashion as the
 SELECT statement against each sub-table for objects loaded in the hierarchy,
 using ``IN`` to query for additional rows based on primary key.
 
-:func:`_orm.selectinload` accepts as its arguments the base entity that is
+:func:`_orm.selectin_polymorphic` accepts as its arguments the base entity that is
 being queried, followed by a sequence of subclasses of that entity for which
 their specific attributes should be loaded for incoming rows::