From 3946c78dd6a143e7e18052c7738825e610807b2b Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Thu, 26 Dec 2024 19:52:18 +0200 Subject: [PATCH] continue: fix grammar (#15352) --- pages/common/continue.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/continue.md b/pages/common/continue.md index acae8ca0b0..b889effc79 100644 --- a/pages/common/continue.md +++ b/pages/common/continue.md @@ -7,6 +7,6 @@ `while :; do continue; echo "This will never be reached"; done` -- Skip the next iteration from within a nested loop: +- Skip to the next iteration from within a nested loop: `for i in {1..3}; do while :; do continue 2; done; done`