From 3b7a00a2d477ea747d0e05a5ab5a935e809c8606 Mon Sep 17 00:00:00 2001 From: Loboston <165859259+Loboston@users.noreply.github.com> Date: Sat, 15 Nov 2025 18:51:54 -0500 Subject: [PATCH] =?UTF-8?q?fix(curriculum):=20correct=20'less=20then'=20?= =?UTF-8?q?=E2=86=92=20'less=20than'=20typo=20in=20loop=20explanation=20(#?= =?UTF-8?q?63871)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../lecture-working-with-loops/6732c07238355642a9781dfb.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/blocks/lecture-working-with-loops/6732c07238355642a9781dfb.md b/curriculum/challenges/english/blocks/lecture-working-with-loops/6732c07238355642a9781dfb.md index 55cf18fe22a..38eedc94250 100644 --- a/curriculum/challenges/english/blocks/lecture-working-with-loops/6732c07238355642a9781dfb.md +++ b/curriculum/challenges/english/blocks/lecture-working-with-loops/6732c07238355642a9781dfb.md @@ -24,7 +24,7 @@ for (let i = 0; i < 10; i++) { ::: -In the example above, the loop starts counting at `0` and while `i` is less then `10`, the loop will continue to run. +In the example above, the loop starts counting at `0` and while `i` is less than `10`, the loop will continue to run. Inside the loop, we check if `i` is equal to `5`. If it is, we use the `break` statement to exit the loop early. If not, we log the value of `i` to the console. So the output of the code will print the numbers `0`, `1`, `2`, `3`, and `4`.