diff options
author | Michael White <m@mwhite.info> | 2014-08-05 22:47:40 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-08-06 22:14:19 -0400 |
commit | 89d21f64c69a0811974ce14f865f3fd51d9ae22b (patch) | |
tree | 83af64d6e2e547b359c8ebad83977ec8085880cc | |
parent | 807680a9ec1e866d7eee997ca051c1b14964d742 (diff) | |
download | sqlalchemy-89d21f64c69a0811974ce14f865f3fd51d9ae22b.tar.gz |
fix typo in cascade documentation
-rw-r--r-- | doc/build/orm/session.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/orm/session.rst b/doc/build/orm/session.rst index ba3049b75..a30dd34fd 100644 --- a/doc/build/orm/session.rst +++ b/doc/build/orm/session.rst @@ -1213,7 +1213,7 @@ the :paramref:`~.relationship.cascade` parameter are described in the following save-update ----------- -``save-update`` cacade indicates that when an object is placed into a +``save-update`` cascade indicates that when an object is placed into a :class:`.Session` via :meth:`.Session.add`, all the objects associated with it via this :func:`.relationship` should also be added to that same :class:`.Session`. Suppose we have an object ``user1`` with two |