diff options
author | Chen Yufei <cyfdecyf@gmail.com> | 2021-10-30 17:26:41 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-30 11:26:41 +0200 |
commit | 3dd9becb0fb3a350644aad3607e64dae58299ffd (patch) | |
tree | 4c026cc22a26be33a0eecf05fa15f20d97ed8ebd /swift.html.markdown | |
parent | 2c8b419c5469b2a213af0d5fb2e440ebc8791ff0 (diff) |
[swift/en] fix typo about break statement in loop (#4258)
Just a small fix.
Diffstat (limited to 'swift.html.markdown')
-rw-r--r-- | swift.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/swift.html.markdown b/swift.html.markdown index 39a5cc52..0e68e65f 100644 --- a/swift.html.markdown +++ b/swift.html.markdown @@ -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 |