]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fix a typo in relationships.rst (#13087)
authorImad Saddik <79410781+ImadSaddik@users.noreply.github.com>
Fri, 23 Jan 2026 22:43:16 +0000 (23:43 +0100)
committerGitHub <noreply@github.com>
Fri, 23 Jan 2026 22:43:16 +0000 (23:43 +0100)
doc/build/orm/queryguide/relationships.rst

index d63ae67ac74fddb0fadd3dfca441b50213aa6276..166c2af8688cf86caaf6a768ccd3f2d78ee89a4d 100644 (file)
@@ -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