Skip to content

Commit db7acd9

Browse files
committed
Merge pull request #318 from hjwp/englishtweak
(tiny thing) "less than" vs "smaller than" as words for <
2 parents ad8bc01 + 57c336f commit db7acd9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

en/python_introduction/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -336,9 +336,9 @@ Give Python two more tasks:
336336
`>` and `<` are easy, but what do `>=` and `<=` mean? Read them like this:
337337

338338
- x `>` y means: x is greater than y
339-
- x `<` y means: x is smaller than y
340-
- x `<=` y means: x is smaller or equal to y
341-
- x `>=` y means: x is greater or equal to y
339+
- x `<` y means: x is less than y
340+
- x `<=` y means: x is less than or equal to y
341+
- x `>=` y means: x is greater than or equal to y
342342

343343
Awesome! Wanna do one more? Try this:
344344

0 commit comments

Comments
 (0)