From: Chris Date: Wed, 7 Jul 2021 01:12:00 +0000 (+0200) Subject: Docs: fixed typo in "Cascades" X-Git-Tag: rel_1_4_21~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=990069b2e8627b7c7c649d1198390ec728b43089;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Docs: fixed typo in "Cascades" --- diff --git a/doc/build/orm/cascades.rst b/doc/build/orm/cascades.rst index 9e497e3545..1f438035f6 100644 --- a/doc/build/orm/cascades.rst +++ b/doc/build/orm/cascades.rst @@ -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