We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents acfd2ed + 19026fe commit 6b9608dCopy full SHA for 6b9608d
decorators.rst
@@ -190,9 +190,9 @@ run the previous code sample using @.
190
"remove my foul smell")
191
192
a_function_requiring_decoration()
193
- #outputs: I am doing some boring work before executing a_function_requiring_decoration()
+ #outputs: I am doing some boring work before executing a_func()
194
# I am the function which needs some decoration to remove my foul smell
195
- # I am doing some boring work after executing a_function_requiring_decoration()
+ # I am doing some boring work after executing a_func()
196
197
#the @a_new_decorator is just a short way of saying:
198
a_function_requiring_decoration = a_new_decorator(a_function_requiring_decoration)
0 commit comments