]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fix a minor grammatical error in the ORM tutorial.
authorRandy Barlow <randy@electronsweatshop.com>
Thu, 13 Oct 2016 16:58:14 +0000 (12:58 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 13 Oct 2016 17:04:41 +0000 (13:04 -0400)
Change-Id: I50daaee2645dd8aa2ee7217f4065589492ed0b7d
(cherry picked from commit 055b207a9f80e1899a30cce8d11e79eb1136612a)

doc/build/orm/tutorial.rst

index 87e2794aedf4d22f13ea316d8e9e033c31d66b6b..e960b1ad536a354dc1c0a264c74d365af94e3ab7 100644 (file)
@@ -1741,8 +1741,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