Skip to content

Commit 63a4a62

Browse files
authored
Missing 'or'
Without the or, 'greater than equal' means the same as 'greater than' but excludes equal. On the other hand, 'greater than or equal' means it could be greater than or it could be equal.
1 parent ebfdde6 commit 63a4a62

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

examples/operator.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ hello world
6262

6363
- `==` equal to
6464

65-
- `>=` greater than equal to
65+
- `>=` greater than or equal to
6666

67-
- `<=` lesser than equal to
67+
- `<=` lesser than or equal to
6868

6969
- `!=` not equal to
7070

0 commit comments

Comments
 (0)