summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichele Simionato <michele.simionato@gmail.com>2021-04-02 08:06:44 +0200
committerMichele Simionato <michele.simionato@gmail.com>2021-04-02 08:06:44 +0200
commitcfc189994a9a985c31c2886c280f8b664a518f09 (patch)
tree2ef6cd5fbf1b2caa69f175e6d004cc51e1d2a0b1 /src
parentf78a91ccc2b5f2db425eb55946927faf2805390a (diff)
downloadpython-decorator-git-cfc189994a9a985c31c2886c280f8b664a518f09.tar.gz
Doc fix
Diffstat (limited to 'src')
-rw-r--r--src/tests/documentation.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/documentation.py b/src/tests/documentation.py
index fdfad28..ce3ae08 100644
--- a/src/tests/documentation.py
+++ b/src/tests/documentation.py
@@ -1150,8 +1150,8 @@ penalty in your specific use case is to measure it.
In the present implementation, decorators generated by ``decorator``
can only be used on user-defined Python functions, methods or coroutines.
I have no interest in decorating generic callable objects. If you want to
-decorate things like classmethods/staticmethods and general callables
-- which I will never support in the decorator module - I suggest you
+decorate things like classmethods/staticmethods and general callables -
+which I will never support in the decorator module - I suggest you
to look at the [wrapt](https://wrapt.readthedocs.io/en/latest/)
project by Graeme Dumpleton.