Skip to content

Commit b216b56

Browse files
committed
Decorator
1 parent af0464f commit b216b56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,7 @@ def function_that_gets_passed_to_decorator():
608608
```
609609

610610
### Debugger Example
611-
**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'`.**
611+
**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'`.**
612612

613613
```python
614614
from functools import wraps

0 commit comments

Comments
 (0)