From 135ef95167301b46b786a69ceaf24ee38dd66b32 Mon Sep 17 00:00:00 2001 From: "wenkai.dai" Date: Fri, 26 Jul 2024 15:47:12 +0400 Subject: [PATCH] revert the comment --- 14_Day_Higher_order_functions/14_higher_order_functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/14_Day_Higher_order_functions/14_higher_order_functions.md b/14_Day_Higher_order_functions/14_higher_order_functions.md index b337ddc..f5920bf 100644 --- a/14_Day_Higher_order_functions/14_higher_order_functions.md +++ b/14_Day_Higher_order_functions/14_higher_order_functions.md @@ -182,7 +182,7 @@ def split_string_decorator(function): #Decorators will be executed from bottom to top @split_string_decorator -@uppercase_decorator +@uppercase_decorator # order with decorators is important in this case - .upper() function does not work with lists def greeting(): return 'Welcome to Python' print(greeting()) # ['WELCOME', 'TO', 'PYTHON']