summaryrefslogtreecommitdiff
path: root/src/tests
diff options
context:
space:
mode:
authorMichele Simionato <michele.simionato@gmail.com>2016-06-07 04:33:42 +0200
committerMichele Simionato <michele.simionato@gmail.com>2016-06-07 04:33:42 +0200
commit7105b8cf07cbdbab754d4dac7351cd7a38ae22dc (patch)
tree27dd8f9522e1e6da893489e4de2f64f052f5869f /src/tests
parent65467ede96b68ee1e3b6aae3a06bbcf35e7883ef (diff)
parent7a1cfb54bb3083aca6e8b2a088ca8a68c8d5a125 (diff)
downloadpython-decorator-git-7105b8cf07cbdbab754d4dac7351cd7a38ae22dc.tar.gz
Merge branch 'master' of github.com:micheles/decorator
Diffstat (limited to 'src/tests')
-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 890b82d..ffc1bf5 100644
--- a/src/tests/documentation.py
+++ b/src/tests/documentation.py
@@ -1112,7 +1112,7 @@ simply disappears. This is a technique that you should keep in mind
when writing decorators for functions with keyword arguments.
On a similar note, there is a restriction on argument names. For instance,
-if name an argument ``_call_`` or ``_func_``, you will get a ``NameError``:
+if you name an argument ``_call_`` or ``_func_``, you will get a ``NameError``:
.. code-block:: python