fix(curriculum): add 'should' to correct typo in step 68 (#61916)

Co-authored-by: Tiffany Grevious <tjgrevious@example.com>
This commit is contained in:
Tiffany Grevious
2025-08-22 21:17:32 -07:00
committed by GitHub
parent 2838382481
commit 7c25ffc556
@@ -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")`)) })