From 983013e40295b6715df64b4f886c2a35154d6abd Mon Sep 17 00:00:00 2001 From: SK <36433929+SK-415@users.noreply.github.com> Date: Sat, 19 Feb 2022 20:26:29 +0800 Subject: [PATCH] fix typo --- 1-js/02-first-steps/13-while-for/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)`: