diff options
| author | Benjamin Dopplinger <b.dopplinger@gmail.com> | 2016-03-16 14:30:04 +1100 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2016-03-16 21:01:57 -0400 |
| commit | e3ea0c8b961b4946b0e63fd8fe8a24c9679cbd33 (patch) | |
| tree | 43d61f72d564eebd99e4b3b60dd39d936cb72383 | |
| parent | 9c2515c80fb29dff28667730c19914e81ca7dd90 (diff) | |
| download | sqlalchemy-e3ea0c8b961b4946b0e63fd8fe8a24c9679cbd33.tar.gz | |
Fix typo
(cherry picked from commit 732c613eeb890e7b7cbd04750468dac584151a31)
| -rw-r--r-- | doc/build/orm/tutorial.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/orm/tutorial.rst b/doc/build/orm/tutorial.rst index e44d7a8d5..bc25e566a 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 |
