]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Docs: fixed typo in "Cascades" 6726/head
authorChris <crsi@hopfen.space>
Wed, 7 Jul 2021 01:12:00 +0000 (03:12 +0200)
committerChris <crsi@hopfen.space>
Wed, 7 Jul 2021 01:12:00 +0000 (03:12 +0200)
doc/build/orm/cascades.rst

index 9e497e35456f2f5e43e6588e53cc524e8f66c085..1f438035f68000dac12b0f484beea65e28d31424 100644 (file)
@@ -98,7 +98,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