summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichele Simionato <michele.simionato@gmail.com>2021-04-02 08:08:47 +0200
committerMichele Simionato <michele.simionato@gmail.com>2021-04-02 08:08:47 +0200
commited0319b930b4f483f18a7033a8bcd5f63bac96ff (patch)
treea9cc06e05633735e348e3126d98208c2b49f044b /src
parentfad5c262b967e59120bcde80f3b49e37a429721c (diff)
downloadpython-decorator-git-ed0319b930b4f483f18a7033a8bcd5f63bac96ff.tar.gz
Updated the docs
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 73d7e2e..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.