summaryrefslogtreecommitdiffstats
path: root/Doc/library/functools.rst
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2010-11-06 06:33:03 (GMT)
committerÉric Araujo <merwok@netwok.org>2010-11-06 06:33:03 (GMT)
commitc6ecb012da1d1c9144f83209ef777f493208db19 (patch)
treeda51a855445640b5038218be405f3ec24e61fc46 /Doc/library/functools.rst
parent8f9626b08b197d41ae2fca521cd1d7ddc4681a0c (diff)
downloadcpython-c6ecb012da1d1c9144f83209ef777f493208db19.zip
cpython-c6ecb012da1d1c9144f83209ef777f493208db19.tar.gz
cpython-c6ecb012da1d1c9144f83209ef777f493208db19.tar.bz2
Fix wrapper/wrapped typo (with Raymond’s blessing)
Diffstat (limited to 'Doc/library/functools.rst')
-rw-r--r--Doc/library/functools.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/functools.rst b/Doc/library/functools.rst
index a6e2382..8e97c54 100644
--- a/Doc/library/functools.rst
+++ b/Doc/library/functools.rst
@@ -150,7 +150,7 @@ The :mod:`functools` module defines the following functions:
To allow access to the original function for introspection and other purposes
(e.g. bypassing a caching decorator such as :func:`lru_cache`), this function
- automatically adds a __wrapped__ attribute to the the wrapped that refers to
+ automatically adds a __wrapped__ attribute to the wrapper that refers to
the original function.
The main intended use for this function is in :term:`decorator` functions which