diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-10-23 02:10:01 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-10-23 02:10:01 -0400 |
commit | 393470c7abf1b1e0c32f037e0ed1eb8e8ce82543 (patch) | |
tree | b92bccf5a7365fe23ae87b0468ab673ceeb73c58 | |
parent | 3be8da48601c00aae49a0030d5d379d86d7c7c7a (diff) | |
download | sqlalchemy-393470c7abf1b1e0c32f037e0ed1eb8e8ce82543.tar.gz |
typo
-rw-r--r-- | doc/build/changelog/migration_10.rst | 2 |
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) |