From: Benjamin Dopplinger Date: Wed, 16 Mar 2016 03:30:04 +0000 (+1100) Subject: Fix typo X-Git-Tag: rel_1_1_0b1~94 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=732c613eeb890e7b7cbd04750468dac584151a31;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fix typo --- diff --git a/doc/build/orm/tutorial.rst b/doc/build/orm/tutorial.rst index 5593671213..0a9fc74306 100644 --- a/doc/build/orm/tutorial.rst +++ b/doc/build/orm/tutorial.rst @@ -2041,7 +2041,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