diff options
author | falkerson <popovych.andrey@gmail.com> | 2016-03-09 09:56:30 +0200 |
---|---|---|
committer | falkerson <popovych.andrey@gmail.com> | 2016-03-09 09:56:30 +0200 |
commit | f61194cb865db8b29cc65e47782bb72e54b14ada (patch) | |
tree | ac95c1ede716fef891cd0beb1b6a3df9727b3b35 | |
parent | be7f8e0b81106c21fa7956f0c27cf207375681c4 (diff) | |
download | sqlalchemy-pr/246.tar.gz |
Update cascades.rstpr/246
-rw-r--r-- | doc/build/orm/cascades.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/orm/cascades.rst b/doc/build/orm/cascades.rst index f645e6dae..0ab8bc8a1 100644 --- a/doc/build/orm/cascades.rst +++ b/doc/build/orm/cascades.rst @@ -341,7 +341,7 @@ easily described through demonstration; it means that, given a mapping such as t }) If an ``Order`` is already in the session, and is assigned to the ``order`` -attribute of an ``Item``, the backref appends the ``Order`` to the ``items`` +attribute of an ``Item``, the backref appends the ``Item`` to the ``items`` collection of that ``Order``, resulting in the ``save-update`` cascade taking place:: |