From d03a7c24982df9e0c1039e17825b267767cfb54f Mon Sep 17 00:00:00 2001 From: PositionZer0 <48386601+PositionZer0@users.noreply.github.com> Date: Mon, 13 Nov 2023 11:14:58 +0800 Subject: [PATCH] [zh-cn]: fix typo (#16935) --- .../getting_started_with_the_web/javascript_basics/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/zh-cn/learn/getting_started_with_the_web/javascript_basics/index.md b/files/zh-cn/learn/getting_started_with_the_web/javascript_basics/index.md index 4b527631da7080..d3ad680f15ac94 100644 --- a/files/zh-cn/learn/getting_started_with_the_web/javascript_basics/index.md +++ b/files/zh-cn/learn/getting_started_with_the_web/javascript_basics/index.md @@ -266,7 +266,7 @@ myVariable = '韩梅梅'; ```js let iceCream = "chocolate"; if (iceCream === "chocolate") { - alert("我最喜欢巧克力冰激淋了。"); + alert("我最喜欢巧克力冰淇淋了。"); } else { alert("但是巧克力才是我的最爱呀……"); }