diff --git a/challenges/advanced-overload-literal/question.py b/challenges/advanced-overload-literal/question.py index b402e1d..c9b1f04 100644 --- a/challenges/advanced-overload-literal/question.py +++ b/challenges/advanced-overload-literal/question.py @@ -1,7 +1,7 @@ """ TODO: -foo is a function that returns an integer when second argument is 1, returns a string when second argument is 2, returns a list when second argument is 3, otherwise it returns inputs self. +foo is a function that returns an integer when second argument is 1, returns a string when second argument is 2, returns a list when second argument is 3, otherwise it returns the first argument. """