From 956c8c542941e46fcd70e17c4572eb56cc417da7 Mon Sep 17 00:00:00 2001 From: singleneko <40374660+singleneko@users.noreply.github.com> Date: Sun, 24 Feb 2019 21:16:12 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E5=AD=97=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 「下诉」 → 「下述」 --- 1-js/02-first-steps/12-while-for/article.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/1-js/02-first-steps/12-while-for/article.md b/1-js/02-first-steps/12-while-for/article.md index b239014b17..0a01a165a9 100644 --- a/1-js/02-first-steps/12-while-for/article.md +++ b/1-js/02-first-steps/12-while-for/article.md @@ -208,7 +208,7 @@ for (;;) { 但我们随时都可以强制退出,因为有一个特殊的 `break` 指令可以做到这一点。 -例如,下诉循环要求用户输入一系列数字,但会在没有数字输入时候“终止”。 +例如,下述循环要求用户输入一系列数字,但会在没有数字输入时候“终止”。 ```js let sum = 0; @@ -299,7 +299,7 @@ if (i > 5) { 有时候我们需要从多个嵌套循环中跳出来。 -例如,下诉代码中我们的循环使用 `i` 和 `j`,提示坐标 `(i, j)` 从 `(0,0)` 到 `(3,3)`: +例如,下述代码中我们的循环使用 `i` 和 `j`,提示坐标 `(i, j)` 从 `(0,0)` 到 `(3,3)`: ```js run no-beautify for (let i = 0; i < 3; i++) {