summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorChen Yufei <cyfdecyf@gmail.com>2021-10-30 17:26:41 +0800
committerGitHub <noreply@github.com>2021-10-30 11:26:41 +0200
commit3dd9becb0fb3a350644aad3607e64dae58299ffd (patch)
tree4c026cc22a26be33a0eecf05fa15f20d97ed8ebd
parent2c8b419c5469b2a213af0d5fb2e440ebc8791ff0 (diff)
[swift/en] fix typo about break statement in loop (#4258)
Just a small fix.
-rw-r--r--swift.html.markdown2
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