From 4284e5266492638e530df32fa53d8d6f726a845a Mon Sep 17 00:00:00 2001 From: K4zMa Date: Wed, 13 Mar 2024 19:05:35 +0100 Subject: [PATCH] fixed incorrect example for less than operator --- concepts/conditionals/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/concepts/conditionals/introduction.md b/concepts/conditionals/introduction.md index 3284afc06..d951d8d0f 100644 --- a/concepts/conditionals/introduction.md +++ b/concepts/conditionals/introduction.md @@ -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 |