summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichele Simionato <michele.simionato@gmail.com>2015-10-04 08:08:34 +0200
committerMichele Simionato <michele.simionato@gmail.com>2015-10-04 08:08:34 +0200
commit1270103993921b8fb2b9e1097c9e5d8163ad18c5 (patch)
treed2b3b27a402c52a924f38c4a754495b85a72d81d
parent7af57a4cf63a20b6121d235bebe206260409a585 (diff)
downloadpython-decorator-git-1270103993921b8fb2b9e1097c9e5d8163ad18c5.tar.gz
Fixed misprint in the docs
-rw-r--r--src/tests/documentation.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/documentation.py b/src/tests/documentation.py
index 8156e3c..04d62eb 100644
--- a/src/tests/documentation.py
+++ b/src/tests/documentation.py
@@ -495,7 +495,7 @@ the implementation of a cool decorator utility (``decorator_apply``).
``FunctionMaker`` provides a ``.create`` classmethod which
takes as input the name, signature, and body of the function
we want to generate as well as the execution environment
-were the function is generated by ``exec``. Here is an example:
+where the function is generated by ``exec``. Here is an example:
.. code-block:: python