]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fix typo in the ORM tutorial
authorLele Gaifax <lele@metapensiero.it>
Sat, 10 May 2008 09:02:55 +0000 (09:02 +0000)
committerLele Gaifax <lele@metapensiero.it>
Sat, 10 May 2008 09:02:55 +0000 (09:02 +0000)
doc/build/content/ormtutorial.txt

index efbe4c951882c30e8f6791d5f8bb5a184aae2bfd..d0587c7672b269c210c5c10b8964ee1eb4092d0e 100644 (file)
@@ -530,7 +530,7 @@ Let's add and commit `Jack Bean` to the database.  `jack` as well as the two `Ad
     ['j25@yahoo.com', 5]
     COMMIT
     
-Querying for Jack, we get just Jack back.  No SQL is yet issued for for Jack's addresses:
+Querying for Jack, we get just Jack back.  No SQL is yet issued for Jack's addresses:
 
     {python}
     {sql}>>> jack = session.query(User).filter_by(name='jack').one()