summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-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.