summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2017-07-09 13:13:25 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2017-07-09 13:13:25 -0400
commit14253e7ff4583108a6aef5295f702c7a192f9bd5 (patch)
tree92fd70c7996e15bfa73fe45fc2e886a96b7c9c73
parenta66979fe1efaa93ba25b1bcd8b67ea2eae2fc48b (diff)
downloadsqlalchemy-14253e7ff4583108a6aef5295f702c7a192f9bd5.tar.gz
- fix exposed "sourcecode" tags
Change-Id: Ie1bdcf2773f3de96d5ca26ebf80657e5d72c70f9
-rw-r--r--doc/build/orm/inheritance_loading.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/build/orm/inheritance_loading.rst b/doc/build/orm/inheritance_loading.rst
index c8a5a84ef..1d56439c6 100644
--- a/doc/build/orm/inheritance_loading.rst
+++ b/doc/build/orm/inheritance_loading.rst
@@ -362,7 +362,7 @@ the :func:`.orm.selectin_polymorphic` loader option::
)
When the above query is run, two additional SELECT statements will
-be emitted::
+be emitted:
.. sourcecode:: python+sql
@@ -448,7 +448,7 @@ loading via the :func:`.joinedload` function::
)
Using the query above, we get three SELECT statements emitted, however
-the one against ``Manager`` will be::
+the one against ``Manager`` will be:
.. sourcecode:: sql