summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Dopplinger <b.dopplinger@gmail.com>2016-03-16 14:30:04 +1100
committerBenjamin Dopplinger <b.dopplinger@gmail.com>2016-03-16 14:30:04 +1100
commit732c613eeb890e7b7cbd04750468dac584151a31 (patch)
tree300c01c1badcb84ced676bf1be64105cb789c4c5
parentedbb32649960db29761e765fc74c025e9999c7dd (diff)
downloadsqlalchemy-732c613eeb890e7b7cbd04750468dac584151a31.tar.gz
Fix typopr/249
-rw-r--r--doc/build/orm/tutorial.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/orm/tutorial.rst b/doc/build/orm/tutorial.rst
index 559367121..0a9fc7430 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