]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fix typo.
authorBertrand Janin <b@janin.com>
Tue, 4 Apr 2017 13:11:25 +0000 (09:11 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 4 Apr 2017 14:04:20 +0000 (10:04 -0400)
(cherry picked from commit 6524838950dca5721a7f7e9db3118d9245c64659)

doc/build/orm/contextual.rst

index fe5e3057178ea54978881a93242192fd449fb58b..cadfe8e050fa04b6d618bb2aa27ad3468587896d 100644 (file)
@@ -113,7 +113,7 @@ object is entirely designed to be used in a **non-concurrent** fashion, which
 in terms of multithreading means "only in one thread at a time".   So our
 above example of :class:`.scoped_session` usage, where the same :class:`.Session`
 object is maintained across multiple calls, suggests that some process needs
-to be in place such that mutltiple calls across many threads don't actually get
+to be in place such that multiple calls across many threads don't actually get
 a handle to the same session.   We call this notion **thread local storage**,
 which means, a special object is used that will maintain a distinct object
 per each application thread.   Python provides this via the