Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
srush committed Aug 30, 2020
1 parent fb76a26 commit 5131de9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion minitorch/module.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ class Parameter:
"""
A Parameter is a special container stored in a :class:`Module`.
It is designed to hold a :class:`Variable`, but we all it to hold
It is designed to hold a :class:`Variable`, but we allow it to hold
any value for testing.
"""

Expand Down
2 changes: 1 addition & 1 deletion minitorch/operators.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def neg(x):


def lt(x, y):
":math:`f(x) =` 1.0 if x is greater than y else 0.0"
":math:`f(x) =` 1.0 if x is less than y else 0.0"
# TODO: Implement for Task 0.1.
raise NotImplementedError('Need to implement for Task 0.1')

Expand Down

0 comments on commit 5131de9

Please sign in to comment.