Skip to content

Commit 732c56b

Browse files
committed
Fix typo in No Greater Than instructions
1 parent 5e3dfa3 commit 732c56b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

1_beginner/chapter3/practice/no_greater_than.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Print True if it is, and False if it isn't
55
66
YOU MAY NOT USE THE GREATER THAN or
7-
LESS THAN OPERATOR (>, <, >=, or ,=).
7+
LESS THAN OPERATORS (>, <, >=, or <=).
88
Find a way to do this problem only
99
using only the == operator and any math operators you want.
1010
'''

1_beginner/chapter3/solutions/no_greater_than.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Print True if it is, and False if it isn't
55
66
YOU MAY NOT USE THE GREATER THAN or
7-
LESS THAN OPERATOR (>, <, >=, or ,=).
7+
LESS THAN OPERATORS (>, <, >=, or <=).
88
Find a way to do this problem only
99
using only the == operator and any math operators you want.
1010
'''

0 commit comments

Comments
 (0)