From f07285472cd65551c84053ee8c4f64eb2e4cd88e Mon Sep 17 00:00:00 2001 From: Manuel Maxera <95315128+manumafe98@users.noreply.github.com> Date: Tue, 7 May 2024 12:03:48 -0300 Subject: [PATCH] Update concepts/loops/about.md Co-authored-by: Sander Ploegsma --- concepts/loops/about.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/concepts/loops/about.md b/concepts/loops/about.md index a5875dbf0..80a192226 100644 --- a/concepts/loops/about.md +++ b/concepts/loops/about.md @@ -208,7 +208,7 @@ which outputs: ## Continue -The continue statement in the other hand acts similar to a "skip button" in a looping construct. +The continue statement on the other hand acts similar to a "skip button" in a looping construct. When encountered within a loop's body, `continue` skips the remaining statements in the current iteration. For exmaple: