summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichele Simionato <michele.simionato@gmail.com>2021-04-02 08:07:47 +0200
committerMichele Simionato <michele.simionato@gmail.com>2021-04-02 08:07:47 +0200
commitfad5c262b967e59120bcde80f3b49e37a429721c (patch)
treef0084f975cfdafc43bd49a257917a0f3def7858d
parentcfc189994a9a985c31c2886c280f8b664a518f09 (diff)
downloadpython-decorator-git-fad5c262b967e59120bcde80f3b49e37a429721c.tar.gz
Doc fix
-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 ce3ae08..73d7e2e 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.