From: Michael Trier Date: Wed, 29 Apr 2009 00:14:09 +0000 (+0000) Subject: Corrected missing stop in the ORM Tutorial. Fixes #1395. X-Git-Tag: rel_0_5_4~14 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=78da9e361b2d66c489aa486a256e8f401af77c29;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Corrected missing stop in the ORM Tutorial. Fixes #1395. --- diff --git a/doc/build/ormtutorial.rst b/doc/build/ormtutorial.rst index d4bc3e5ea3..423c235d24 100644 --- a/doc/build/ormtutorial.rst +++ b/doc/build/ormtutorial.rst @@ -1201,7 +1201,7 @@ Usage is not too different from what we've been doing. Let's give Wendy some bl WHERE users.name = ? LIMIT 2 OFFSET 0 ['wendy'] - + {stop} >>> post = BlogPost("Wendy's Blog Post", "This is a test", wendy) >>> session.add(post)