summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRandy Barlow <randy@electronsweatshop.com>2016-10-13 12:58:14 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2016-10-13 13:02:26 -0400
commit055b207a9f80e1899a30cce8d11e79eb1136612a (patch)
treee52481755aeb5af3f384235579144b4a12d96d03
parent6b7b77896dd296b3891bc67a774c4cb2e1236902 (diff)
downloadsqlalchemy-055b207a9f80e1899a30cce8d11e79eb1136612a.tar.gz
Fix a minor grammatical error in the ORM tutorial.
Change-Id: I50daaee2645dd8aa2ee7217f4065589492ed0b7d
-rw-r--r--doc/build/orm/tutorial.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/build/orm/tutorial.rst b/doc/build/orm/tutorial.rst
index a6eb9d196..6a7d75fb0 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