From 0ae9583a7d8178f0ab5ee058c73beb1ee8cc520a Mon Sep 17 00:00:00 2001 From: jihongyu Date: Thu, 10 Nov 2022 13:04:49 +0800 Subject: [PATCH] feat: remove the abundant ')' --- 1-js/02-first-steps/08-operators/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/08-operators/article.md b/1-js/02-first-steps/08-operators/article.md index 2281b7a51c..4e13f1f7dc 100644 --- a/1-js/02-first-steps/08-operators/article.md +++ b/1-js/02-first-steps/08-operators/article.md @@ -45,7 +45,7 @@ 取余运算符是 `%`,尽管它看起来很像百分数,但实际并无关联。 -`a % b` 的结果是 `a` 整除 `b` 的 [余数](https://zh.wikipedia.org/zh-hans/%E4%BD%99%E6%95%B0))。 +`a % b` 的结果是 `a` 整除 `b` 的 [余数](https://zh.wikipedia.org/zh-hans/%E4%BD%99%E6%95%B0)。 例如: