From d490a9246a3d458d81ce09bfaf1083eb89757727 Mon Sep 17 00:00:00 2001 From: Patrick Arminio Date: Thu, 11 Apr 2024 09:39:59 +0200 Subject: [PATCH] Fix typo --- challenges/advanced-overload-literal/question.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/advanced-overload-literal/question.py b/challenges/advanced-overload-literal/question.py index 8d9b3c4..b402e1d 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 interger 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 inputs self. """