From: Benjamin Dopplinger Date: Wed, 16 Mar 2016 03:30:04 +0000 (+1100) Subject: Fix typo X-Git-Tag: rel_1_0_13~35 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e3ea0c8b961b4946b0e63fd8fe8a24c9679cbd33;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fix typo (cherry picked from commit 732c613eeb890e7b7cbd04750468dac584151a31) --- diff --git a/doc/build/orm/tutorial.rst b/doc/build/orm/tutorial.rst index e44d7a8d5a..bc25e566a2 100644 --- a/doc/build/orm/tutorial.rst +++ b/doc/build/orm/tutorial.rst @@ -2002,7 +2002,7 @@ that a single user might have lots of blog posts. When we access ``User.posts``, we'd like to be able to filter results further so as not to load the entire collection. For this we use a setting accepted by :func:`~sqlalchemy.orm.relationship` called ``lazy='dynamic'``, which -configures an alternate **loader strategy** on the attribute:: +configures an alternate **loader strategy** on the attribute: .. sourcecode:: python+sql