diff --git a/README.md b/README.md index 6645c24..a41d5b7 100644 --- a/README.md +++ b/README.md @@ -608,7 +608,7 @@ def function_that_gets_passed_to_decorator(): ``` ### Debugger Example -**Prints functions name every time it gets called. Wraps is a helper decorator that copies metadata of function func() to function out(). Without it `'add.__name__'` would return `'out'`.** +**Decorator that prints function's name every time it gets called. Wraps is a helper decorator that copies metadata of function func() to function out(). Without it `'add.__name__'` would return `'out'`.** ```python from functools import wraps