]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fix typo
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 19 Jan 2014 22:51:21 +0000 (17:51 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 19 Jan 2014 22:51:51 +0000 (17:51 -0500)
doc/build/orm/session.rst

index 4c63fa9931d933360362c0bb427304fbdd0def41..02af1e1e9d5808ed33cd4e296b74a472bdd4f526 100644 (file)
@@ -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()