summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/decorator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decorator.py b/src/decorator.py
index 81fe389..ed5c6e0 100644
--- a/src/decorator.py
+++ b/src/decorator.py
@@ -217,7 +217,7 @@ def decorator(caller, _func=None):
if _func is not None: # return a decorated function
# this is obsolete behavior; you should use decorate instead
return decorate(caller, _func)
- # else return a decorator
+ # else return a decorator function
if inspect.isclass(caller):
name = caller.__name__.lower()
callerfunc = get_init(caller)