]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fix typo
authorBenjamin Dopplinger <b.dopplinger@gmail.com>
Wed, 16 Mar 2016 03:30:04 +0000 (14:30 +1100)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 17 Mar 2016 01:01:57 +0000 (21:01 -0400)
(cherry picked from commit 732c613eeb890e7b7cbd04750468dac584151a31)

doc/build/orm/tutorial.rst

index e44d7a8d5acdde3e49412b430272ff4db49d2dd9..bc25e566a227b8c5a6e20143432cf76172042dd7 100644 (file)
@@ -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