]> 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)
committerBenjamin Dopplinger <b.dopplinger@gmail.com>
Wed, 16 Mar 2016 03:30:04 +0000 (14:30 +1100)
doc/build/orm/tutorial.rst

index 559367121338dcfee2660c5808524dfcfaaeeb3f..0a9fc74306bc2738e1c1b70099a2b352668b27a6 100644 (file)
@@ -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