From 7c25ffc55638bfb2922c6ee75f7f4c09dd8e73ef Mon Sep 17 00:00:00 2001 From: Tiffany Grevious Date: Fri, 22 Aug 2025 21:17:32 -0700 Subject: [PATCH] fix(curriculum): add 'should' to correct typo in step 68 (#61916) Co-authored-by: Tiffany Grevious --- .../66019258a7c71d4ae50da42e.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/07-scientific-computing-with-python/learn-special-methods-by-building-a-vector-space/66019258a7c71d4ae50da42e.md b/curriculum/challenges/english/07-scientific-computing-with-python/learn-special-methods-by-building-a-vector-space/66019258a7c71d4ae50da42e.md index 0e7af024e72..c34053a4aad 100644 --- a/curriculum/challenges/english/07-scientific-computing-with-python/learn-special-methods-by-building-a-vector-space/66019258a7c71d4ae50da42e.md +++ b/curriculum/challenges/english/07-scientific-computing-with-python/learn-special-methods-by-building-a-vector-space/66019258a7c71d4ae50da42e.md @@ -25,7 +25,7 @@ Your `__le__` method should have two parameters, `self` and `other`. ({ test: () => assert(runPython(`_Node(_code).find_class("R2Vector").find_function("__le__").has_args("self, other")`)) }) ``` -Your `__le__` method return the opposite of `self > other`. +Your `__le__` method should return the opposite of `self > other`. ```js ({ test: () => assert(runPython(`_Node(_code).find_class("R2Vector").find_function("__le__").has_return("not self > other")`)) })