From: Mike Bayer Date: Sun, 19 Jan 2014 22:51:21 +0000 (-0500) Subject: fix typo X-Git-Tag: rel_0_8_5~46 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=21e012121a6918094c163521cf3a5e3ae037ba0f;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix typo --- diff --git a/doc/build/orm/session.rst b/doc/build/orm/session.rst index 4c63fa9931..02af1e1e9d 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()