From e634bc05709cf6088fc6e2c52232f56004f4ac48 Mon Sep 17 00:00:00 2001 From: NitzanGal <98451570+NitzanGal@users.noreply.github.com> Date: Fri, 9 May 2025 23:31:36 +0300 Subject: [PATCH] Fix typo in Operators.md Changed the code to reflect the sentence before. Checking the number is actually between 3 and 7. --- tutorials/learn-ts.org/en/Operators.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/learn-ts.org/en/Operators.md b/tutorials/learn-ts.org/en/Operators.md index b6aa52fda..2f407ce17 100644 --- a/tutorials/learn-ts.org/en/Operators.md +++ b/tutorials/learn-ts.org/en/Operators.md @@ -75,7 +75,7 @@ Comparison operators allow you to compare two values. For example, to check if a number is between 3 and 7, we can write: const number = 5; - const between = number > 5 && number < 7; + const between = number > 3 && number < 7; const numberIsNotZero = number !== 0;