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

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