From: Mike Bayer Date: Thu, 23 Oct 2014 06:10:01 +0000 (-0400) Subject: typo X-Git-Tag: rel_1_0_0b1~70^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=393470c7abf1b1e0c32f037e0ed1eb8e8ce82543;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git typo --- diff --git a/doc/build/changelog/migration_10.rst b/doc/build/changelog/migration_10.rst index c760ee2d15..bc7fa139fe 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)