From 362ca24df7964f131c04718ae446de164b770194 Mon Sep 17 00:00:00 2001 From: Ganesh A Hegde Date: Tue, 15 Sep 2026 15:42:55 +0530 Subject: [PATCH] Fix grammar in while-loops introduction --- concepts/while-loops/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/concepts/while-loops/introduction.md b/concepts/while-loops/introduction.md index 0286807411..f653e54191 100644 --- a/concepts/while-loops/introduction.md +++ b/concepts/while-loops/introduction.md @@ -10,7 +10,7 @@ while (condition) { ``` JavaScript also has a do-while loop. -Here the condition is checked after the loop body was executed. +Here the condition is checked after the loop body is executed. This is useful when the condition depends on the outcome of the code in the body. ```javascript