summaryrefslogtreecommitdiff
path: root/docs/narr/threadlocals.rst
diff options
context:
space:
mode:
authorFernando Correa Neto <fcdoth@gmail.com>2009-12-09 23:47:08 +0000
committerFernando Correa Neto <fcdoth@gmail.com>2009-12-09 23:47:08 +0000
commite3b2718dfa1f62f9f54a2522cfea4dbab8f40858 (patch)
tree3ebe00f0f2a3697859d01670f6341709640b9aca /docs/narr/threadlocals.rst
parentbad02d68e90e887f86bbeb866a45bfdcd5a3b984 (diff)
downloadpyramid-e3b2718dfa1f62f9f54a2522cfea4dbab8f40858.tar.gz
pyramid-e3b2718dfa1f62f9f54a2522cfea4dbab8f40858.tar.bz2
pyramid-e3b2718dfa1f62f9f54a2522cfea4dbab8f40858.zip
typo
Diffstat (limited to 'docs/narr/threadlocals.rst')
-rw-r--r--docs/narr/threadlocals.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/narr/threadlocals.rst b/docs/narr/threadlocals.rst
index a3d79692f..d6c3c9b0a 100644
--- a/docs/narr/threadlocals.rst
+++ b/docs/narr/threadlocals.rst
@@ -136,7 +136,7 @@ period of time while you deprecate the older API. So you write a
"facade" implementation of the new API which calls into the code which
implements the older API. Since the new API does not require the
request, your facade implementation doesn't have local access to the
-request when it needs to pass it into the older API implementaton.
+request when it needs to pass it into the older API implementation.
After some period of time, the older implementation code is disused
and the hack that uses ``get_current_request`` is removed. This would
be an appropriate place to use the ``get_current_request`` function.