From: Pablo Marti Date: Mon, 10 Jul 2017 17:43:58 +0000 (+0200) Subject: Fix typo, foriegn -> foreign X-Git-Tag: rel_1_1_12~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=923f66f9713d4ca4702bde1d046060eeefc7fefe;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fix typo, foriegn -> foreign (cherry picked from commit c6b46759829633e6745b561861891a8ffb85fbb8) --- diff --git a/doc/build/orm/loading_relationships.rst b/doc/build/orm/loading_relationships.rst index d5f8344689..9050784a1c 100644 --- a/doc/build/orm/loading_relationships.rst +++ b/doc/build/orm/loading_relationships.rst @@ -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::