From 13383f4074c8185c85ee01e40573fc97bcfa8617 Mon Sep 17 00:00:00 2001 From: Julien Palard Date: Sun, 22 Sep 2024 23:00:12 +0200 Subject: [PATCH] Fix typo in generic-class --- challenges/advanced-generic-class/question.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/advanced-generic-class/question.py b/challenges/advanced-generic-class/question.py index d9c0cec..8e7197e 100644 --- a/challenges/advanced-generic-class/question.py +++ b/challenges/advanced-generic-class/question.py @@ -3,7 +3,7 @@ Define a generic class that represents a stack. It can be instantiated with a certain type, with method `push` accepting an object of the specified type, -and `pop` returning an an object of the same type +and `pop` returning an object of the same type """