From: Imad Saddik <79410781+ImadSaddik@users.noreply.github.com> Date: Fri, 23 Jan 2026 22:43:16 +0000 (+0100) Subject: Fix a typo in relationships.rst (#13087) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=53e2966dc0dab99f5814b5a84f4ab7435a4e216e;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fix a typo in relationships.rst (#13087) --- diff --git a/doc/build/orm/queryguide/relationships.rst b/doc/build/orm/queryguide/relationships.rst index d63ae67ac7..166c2af868 100644 --- a/doc/build/orm/queryguide/relationships.rst +++ b/doc/build/orm/queryguide/relationships.rst @@ -754,7 +754,7 @@ IN, which currently includes SQL Server. :paramref:`_orm.relationship.lazy` or by using the :func:`.selectinload` loader option. This style of loading emits a SELECT that refers to the primary key values of the parent object, or in the case of a many-to-one -relationship to the those of the child objects, inside of an IN clause, in +relationship to those of the child objects, inside of an IN clause, in order to load related associations: .. sourcecode:: pycon+sql