From: Chris Date: Wed, 7 Jul 2021 01:12:00 +0000 (+0200) Subject: Docs: fixed typo in "Cascades" X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=385ed1c3f4d7f5dc535a9f795f04ca20d3757584;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Docs: fixed typo in "Cascades" (cherry picked from commit 990069b2e8627b7c7c649d1198390ec728b43089) --- diff --git a/doc/build/orm/cascades.rst b/doc/build/orm/cascades.rst index b8baf89539..c7a343f4ee 100644 --- a/doc/build/orm/cascades.rst +++ b/doc/build/orm/cascades.rst @@ -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