Skip to content

Commit

Permalink
fixed incorrect example for less than operator
Browse files Browse the repository at this point in the history
  • Loading branch information
K4zMa committed Mar 13, 2024
1 parent 341c851 commit 4284e52
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit 4284e52

Please sign in to comment.