continue: fix grammar (#15352)

This commit is contained in:
Managor
2024-12-26 19:52:18 +02:00
committed by GitHub
parent ff532ecf93
commit 3946c78dd6

View File

@@ -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`