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.