]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Docs: fixed typo in "Cascades"
authorChris <crsi@hopfen.space>
Wed, 7 Jul 2021 01:12:00 +0000 (03:12 +0200)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 7 Jul 2021 13:41:36 +0000 (09:41 -0400)
(cherry picked from commit 990069b2e8627b7c7c649d1198390ec728b43089)

doc/build/orm/cascades.rst

index b8baf895399560dedbda2d366701a04e1419d799..c7a343f4ee57cae574dfebc137f2aebe35db2bd1 100644 (file)
@@ -91,7 +91,7 @@ becomes part of the state of that :class:`.Session`::
     >>> address3 = Address()
     >>> user1.addresses.append(address3)
     >>> address3 in sess
-    >>> True
+    True
 
 A ``save-update`` cascade can exhibit surprising behavior when removing an item from
 a collection or de-associating an object from a scalar attribute. In some cases, the