Skip to content

Commit 9124ba7

Browse files
committed
cleaning up modules.md, darkf/math style greater than
1 parent d26c2ea commit 9124ba7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

basics/modules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ that opens:
4949
![My Python's modules.](../images/modules.png)
5050

5151
All of these `.py` files can be imported like we just imported
52-
`random.py`. In random.py, there's a like like `randint = something`,
52+
`random.py`. In random.py, there's a line like `randint = something`,
5353
so we can use its randint variable with `random.randint` after
5454
importing it.
5555

basics/variables.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,8 +267,8 @@ probably looks awfully long, but it's actually quite easy to learn.
267267
|-----------|-----------------------------------|-----------------------|
268268
| `a == b` | a is equal to b | `1 == 1` |
269269
| `a != b` | a is not equal to b | `1 != 2` |
270-
| `a > b` | a is bigger than b | `2 > 1` |
271-
| `a >= b` | a is bigger than or equal to b | `2 >= 1`, `1 >= 1` |
270+
| `a > b` | a is greater than b | `2 > 1` |
271+
| `a >= b` | a is greater than or equal to b | `2 >= 1`, `1 >= 1` |
272272
| `a < b` | a is less than b | `1 < 2` |
273273
| `a <= b` | a is less than or equal to b | `1 <= 2`, `1 <= 1` |
274274

0 commit comments

Comments
 (0)