1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 14:35:42 +02:00

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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -7,6 +7,6 @@
`while :; do continue; echo "This will never be reached"; done` `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` `for i in {1..3}; do while :; do continue 2; done; done`