From a334220480b2a7a392aa05e4b6786218ee9cc628 Mon Sep 17 00:00:00 2001 From: azu Date: Fri, 7 Jun 2024 23:59:08 +0900 Subject: [PATCH] =?UTF-8?q?fix(loop):=20number=20=E2=86=92=20num=20(#1742)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/basic/loop/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/basic/loop/README.md b/source/basic/loop/README.md index 004384ce1..a827e0cff 100644 --- a/source/basic/loop/README.md +++ b/source/basic/loop/README.md @@ -285,8 +285,8 @@ while (条件式) { ```js -if (isEven(number)) { - results.push(number); +if (isEven(num)) { + results.push(num); } ```