Skip to content

Commit 7c25ffc

Browse files
DevchamploOTiffany Grevious
andauthored
fix(curriculum): add 'should' to correct typo in step 68 (freeCodeCamp#61916)
Co-authored-by: Tiffany Grevious <tjgrevious@example.com>
1 parent 2838382 commit 7c25ffc

File tree

1 file changed

+1
-1
lines changed
  • curriculum/challenges/english/07-scientific-computing-with-python/learn-special-methods-by-building-a-vector-space

1 file changed

+1
-1
lines changed

curriculum/challenges/english/07-scientific-computing-with-python/learn-special-methods-by-building-a-vector-space/66019258a7c71d4ae50da42e.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Your `__le__` method should have two parameters, `self` and `other`.
2525
({ test: () => assert(runPython(`_Node(_code).find_class("R2Vector").find_function("__le__").has_args("self, other")`)) })
2626
```
2727

28-
Your `__le__` method return the opposite of `self > other`.
28+
Your `__le__` method should return the opposite of `self > other`.
2929

3030
```js
3131
({ test: () => assert(runPython(`_Node(_code).find_class("R2Vector").find_function("__le__").has_return("not self > other")`)) })

0 commit comments

Comments
 (0)