1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-07-31 20:10:49 +02:00

[swift/en] fix typo about break statement in loop (#4258)

Just a small fix.
This commit is contained in:
Chen Yufei
2021-10-30 17:26:41 +08:00
committed by GitHub
parent 2c8b419c54
commit 3dd9becb0f

View File

@@ -334,7 +334,7 @@ repeat {
} while i < 5
// The continue statement continues executing a loop at the next iteration
// The break statement ends a swift or loop immediately
// The break statement ends a loop immediately
// MARK: - Functions