From 840f01047c487f08534e8ea69f491b7675cf1360 Mon Sep 17 00:00:00 2001
From: "violet.png" <89796952+violet102-png@users.noreply.github.com>
Date: Mon, 22 Apr 2024 09:11:18 -0500
Subject: [PATCH] fix(curriculum): Learn Introductory JavaScript by Building a
Pyramid Generator Step 30 (#54477)
---
.../660f1a00ac619ddc1e259a66.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660f1a00ac619ddc1e259a66.md b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660f1a00ac619ddc1e259a66.md
index 505641e0ec4..b12566f7931 100644
--- a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660f1a00ac619ddc1e259a66.md
+++ b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-introductory-javascript-by-building-a-pyramid-generator/660f1a00ac619ddc1e259a66.md
@@ -7,7 +7,7 @@ dashedName: step-30
# --description--
-The condition of a `for` loop tells the loop how many times it should iterate. When the `condition` becomes true, the loop will stop.
+The condition of a `for` loop tells the loop how many times it should iterate. When the `condition` becomes false, the loop will stop.
In JavaScript, a Boolean value can be either `true` or `false`. These are not strings - you will learn more about the difference later on.