summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2014-10-23 02:10:01 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2014-10-23 02:10:01 -0400
commit393470c7abf1b1e0c32f037e0ed1eb8e8ce82543 (patch)
treeb92bccf5a7365fe23ae87b0468ab673ceeb73c58
parent3be8da48601c00aae49a0030d5d379d86d7c7c7a (diff)
downloadsqlalchemy-393470c7abf1b1e0c32f037e0ed1eb8e8ce82543.tar.gz
typo
-rw-r--r--doc/build/changelog/migration_10.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/changelog/migration_10.rst b/doc/build/changelog/migration_10.rst
index c760ee2d1..bc7fa139f 100644
--- a/doc/build/changelog/migration_10.rst
+++ b/doc/build/changelog/migration_10.rst
@@ -1064,7 +1064,7 @@ A simple example is::
print s.query(ASub1).join(B, ASub1.b).join(ASub2, ASub2.id == B.a_id)
The two queries at the bottom are equivalent, and should both render
-the identical SQL:
+the identical SQL::
SELECT a.id AS a_id, a.type AS a_type
FROM a JOIN b ON b.a_id = a.id JOIN a ON b.a_id = a.id AND a.type IN (:type_1)