]> 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)
committerGitHub <noreply@github.com>
Mon, 10 Jul 2017 17:43:58 +0000 (19:43 +0200)
doc/build/orm/loading_relationships.rst

index 6d3beb94de01e521f0844f0351d98a2fdbc1fd53..a4b2ad99b56412b4c0551ffbe04aae0abede2014 100644 (file)
@@ -288,7 +288,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::