diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-01-19 17:51:21 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-01-19 17:51:51 -0500 |
commit | 21e012121a6918094c163521cf3a5e3ae037ba0f (patch) | |
tree | 0e088fb094838516eba2879736cdf2e58bbf0fd3 | |
parent | df06bd18033c09142099714140a1294691972432 (diff) | |
download | sqlalchemy-21e012121a6918094c163521cf3a5e3ae037ba0f.tar.gz |
fix typo
-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 4c63fa993..02af1e1e9 100644 --- a/doc/build/orm/session.rst +++ b/doc/build/orm/session.rst @@ -1763,7 +1763,7 @@ we call upon the registry a second time, we get back the **same** :class:`.Sessi This pattern allows disparate sections of the application to call upon a global :class:`.scoped_session`, so that all those areas may share the same session without the need to pass it explicitly. The :class:`.Session` we've established -in our registry will remain, until we explicitly tell our regsitry to dispose of it, +in our registry will remain, until we explicitly tell our registry to dispose of it, by calling :meth:`.scoped_session.remove`:: >>> Session.remove() |