From: Randy Barlow Date: Thu, 13 Oct 2016 16:58:14 +0000 (-0400) Subject: Fix a minor grammatical error in the ORM tutorial. X-Git-Tag: rel_1_1_2~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=055b207a9f80e1899a30cce8d11e79eb1136612a;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fix a minor grammatical error in the ORM tutorial. Change-Id: I50daaee2645dd8aa2ee7217f4065589492ed0b7d --- diff --git a/doc/build/orm/tutorial.rst b/doc/build/orm/tutorial.rst index a6eb9d1962..6a7d75fb05 100644 --- a/doc/build/orm/tutorial.rst +++ b/doc/build/orm/tutorial.rst @@ -1780,8 +1780,8 @@ of loading by default, see the section :doc:`/orm/loading_relationships`. Deleting ======== -Let's try to delete ``jack`` and see how that goes. We'll mark as deleted in -the session, then we'll issue a ``count`` query to see that no rows remain: +Let's try to delete ``jack`` and see how that goes. We'll mark the object as deleted +in the session, then we'll issue a ``count`` query to see that no rows remain: .. sourcecode:: python+sql