From c6ecb012da1d1c9144f83209ef777f493208db19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Araujo?= Date: Sat, 6 Nov 2010 06:33:03 +0000 Subject: [PATCH] =?UTF-8?q?Fix=20wrapper/wrapped=20typo=20(with=20Raymond?= =?UTF-8?q?=E2=80=99s=20blessing)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Doc/library/functools.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/functools.rst b/Doc/library/functools.rst index a6e23822f03..8e97c5409dd 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