From 78851e185ff378f276cbe842c3e3ad0351949705 Mon Sep 17 00:00:00 2001 From: chvmvd <104971044+chvmvd@users.noreply.github.com> Date: Wed, 18 Oct 2023 23:40:56 +0900 Subject: [PATCH] =?UTF-8?q?Fix=20typo=20from=20"=E4=BB=A5=E4=B8=8B"=20to?= =?UTF-8?q?=20"=E6=AC=A1"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/1-trial-session/09-functions/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/1-trial-session/09-functions/index.md b/docs/1-trial-session/09-functions/index.md index de9fdb4b7..1bd1a55dd 100644 --- a/docs/1-trial-session/09-functions/index.md +++ b/docs/1-trial-session/09-functions/index.md @@ -191,7 +191,7 @@ function max(a, b) { :::note -`a > b` が `true` の場合、if 文内部の `return` で関数実行が中断されるため、`else` キーワードは必ずしも必要ではありません。そのため、以下のように書くこともできます。 +`a > b` が `true` の場合、if 文内部の `return` で関数実行が中断されるため、`else` キーワードは必ずしも必要ではありません。そのため、次のように書くこともできます。 ```javascript function max(a, b) {