diff --git a/1-js/02-first-steps/13-while-for/article.md b/1-js/02-first-steps/13-while-for/article.md index 4feecd6a25..d6b81aacbb 100644 --- a/1-js/02-first-steps/13-while-for/article.md +++ b/1-js/02-first-steps/13-while-for/article.md @@ -298,7 +298,7 @@ if (i > 5) { ## break/continue 标签 -有时候我们需要从一次从多层嵌套的循环中跳出来。 +有时候我们需要一次从多层嵌套的循环中跳出来。 例如,下述代码中我们的循环使用了 `i` 和 `j`,从 `(0,0)` 到 `(3,3)` 提示坐标 `(i, j)`: