From b216b56b332927ca3db7004f3c1c3c3274128c9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Tue, 29 Jan 2019 17:36:17 +0100 Subject: [PATCH] Decorator --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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