Skip to content

Commit

Permalink
Incorrect example operator (#731)
Browse files Browse the repository at this point in the history
* fixed incorrect example for less than operator

* Further changes to the same topic of previous
commit.
  • Loading branch information
K4zMa authored Mar 16, 2024
1 parent 808c099 commit 4e8761a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion concepts/conditionals/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Here is a list of the comparison operators and an example of when they give a `t
| ------ | --------------------- | ------- |
| == | equal | 1 == 1 |
| != | not equal | 1 != 2 |
| < | less than | 5 < 4 |
| < | less than | 4 < 5 |
| <= | less than or equal | 4 <= 4 |
| > | greater than | 3 > 1 |
| >= | greater than or equal | 2 >= 2 |
Expand Down
2 changes: 1 addition & 1 deletion concepts/conditionals/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Here is a list of the comparison operators and an example of when they give a `t
| ------ | --------------------- | ------- |
| == | equal | 1 == 1 |
| != | not equal | 1 != 2 |
| < | less than | 5 < 4 |
| < | less than | 4 < 5 |
| <= | less than or equal | 4 <= 4 |
| > | greater than | 3 > 1 |
| >= | greater than or equal | 2 >= 2 |
Expand Down
2 changes: 1 addition & 1 deletion exercises/concept/vehicle-purchase/.docs/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Here is a list of the comparison operators and an example of when they give a `t
| ------ | --------------------- | ------- |
| == | equal | 1 == 1 |
| != | not equal | 1 != 2 |
| < | less than | 5 < 4 |
| < | less than | 4 < 5 |
| <= | less than or equal | 4 <= 4 |
| > | greater than | 3 > 1 |
| >= | greater than or equal | 2 >= 2 |
Expand Down

0 comments on commit 4e8761a

Please sign in to comment.