Skip to content

Commit aa4226f

Browse files
singleneko根号三
authored andcommitted
「下诉」 → 「下述」
1 parent 5dec414 commit aa4226f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

1-js/02-first-steps/12-while-for/article.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ for (;;) {
208208

209209
但我们随时都可以强制退出,因为有一个特殊的 `break` 指令可以做到这一点。
210210

211-
例如,下诉循环要求用户输入一系列数字,但会在没有数字输入时候“终止”。
211+
例如,下述循环要求用户输入一系列数字,但会在没有数字输入时候“终止”。
212212

213213
```js
214214
let sum = 0;
@@ -299,7 +299,7 @@ if (i > 5) {
299299

300300
有时候我们需要从多个嵌套循环中跳出来。
301301

302-
例如,下诉代码中我们的循环使用 `i``j`,提示坐标 `(i, j)``(0,0)``(3,3)`
302+
例如,下述代码中我们的循环使用 `i``j`,提示坐标 `(i, j)``(0,0)``(3,3)`
303303

304304
```js run no-beautify
305305
for (let i = 0; i < 3; i++) {

0 commit comments

Comments
 (0)