]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
typo
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 23 Oct 2014 06:10:01 +0000 (02:10 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 23 Oct 2014 06:10:01 +0000 (02:10 -0400)
doc/build/changelog/migration_10.rst

index c760ee2d154e76ca83501019085fd9df50fcac1f..bc7fa139fe23bb6cc8be9f200862b211c8112819 100644 (file)
@@ -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)