From: Lele Gaifax Date: Sat, 10 May 2008 09:02:55 +0000 (+0000) Subject: Fix typo in the ORM tutorial X-Git-Tag: rel_0_5beta1~113 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5a77974f7d070ed71a4c8062289a5aa82c7f28f9;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fix typo in the ORM tutorial --- diff --git a/doc/build/content/ormtutorial.txt b/doc/build/content/ormtutorial.txt index efbe4c9518..d0587c7672 100644 --- a/doc/build/content/ormtutorial.txt +++ b/doc/build/content/ormtutorial.txt @@ -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()