diff options
author | Michael Trier <mtrier@gmail.com> | 2009-04-29 00:14:09 +0000 |
---|---|---|
committer | Michael Trier <mtrier@gmail.com> | 2009-04-29 00:14:09 +0000 |
commit | 78da9e361b2d66c489aa486a256e8f401af77c29 (patch) | |
tree | fe0b17e662418b293195202277da0104f1f27dd9 | |
parent | 541a0c8491bf3a966741adf8cdb524e4aab72e1b (diff) | |
download | sqlalchemy-78da9e361b2d66c489aa486a256e8f401af77c29.tar.gz |
Corrected missing stop in the ORM Tutorial. Fixes #1395.
-rw-r--r-- | doc/build/ormtutorial.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/ormtutorial.rst b/doc/build/ormtutorial.rst index d4bc3e5ea..423c235d2 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) |