diff options
author | Michael White <m@mwhite.info> | 2014-08-05 22:47:40 -0400 |
---|---|---|
committer | Michael White <m@mwhite.info> | 2014-08-05 22:47:40 -0400 |
commit | 042131443fb5ac3194248ea4f8113d700aaf3be5 (patch) | |
tree | 90e49ef75c8406c3e19eb65c440f203b7976d767 | |
parent | 4ddc4c456ce1a6cc3e27bdbd6a507f29d0128a54 (diff) | |
download | sqlalchemy-pr/127.tar.gz |
fix typo in cascade documentationpr/127
-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 4a4e5deca..b47e70d53 100644 --- a/doc/build/orm/session.rst +++ b/doc/build/orm/session.rst @@ -1368,7 +1368,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 |