]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fix typo, foriegn -> foreign
authorPablo Marti <pablo@albanta.eu>
Mon, 10 Jul 2017 17:43:58 +0000 (19:43 +0200)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 17 Jul 2017 14:29:28 +0000 (10:29 -0400)
(cherry picked from commit c6b46759829633e6745b561861891a8ffb85fbb8)

doc/build/orm/loading_relationships.rst

index d5f834468989f71845e64e4d63ecafd70a899a29..9050784a1c266dd36b054a84a0246abf45f50ced 100644 (file)
@@ -282,7 +282,7 @@ using the :func:`.joinedload` loader option:
 The JOIN emitted by default is a LEFT OUTER JOIN, to allow for a lead object
 that does not refer to a related row.  For an attribute that is guaranteed
 to have an element, such as a many-to-one
-reference to a related object where the referencing foriegn key is NOT NULL,
+reference to a related object where the referencing foreign key is NOT NULL,
 the query can be made more efficient by using an inner join; this is available
 at the mapping level via the :paramref:`.relationship.innerjoin` flag::