From 90c5bda4bde106ac7bb477393e03c9df85f44406 Mon Sep 17 00:00:00 2001 From: GuanCun <37606400+GuanCun@users.noreply.github.com> Date: Thu, 12 Aug 2021 22:08:48 +0800 Subject: Fix typo in Web/JavaScript/Reference/Global_Objects/encodeURIComponent, zh-CN (#2033) This is a translation error. --- .../javascript/reference/global_objects/encodeuricomponent/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'files/zh-cn/web/javascript/reference') diff --git a/files/zh-cn/web/javascript/reference/global_objects/encodeuricomponent/index.html b/files/zh-cn/web/javascript/reference/global_objects/encodeuricomponent/index.html index be7f03a446..dc3f9a00a2 100644 --- a/files/zh-cn/web/javascript/reference/global_objects/encodeuricomponent/index.html +++ b/files/zh-cn/web/javascript/reference/global_objects/encodeuricomponent/index.html @@ -89,7 +89,7 @@ console.log(header); function encodeRFC5987ValueChars (str) {     return encodeURIComponent(str). - // 注意,仅管 RFC3986 保留 "!",但 RFC5987 并没有 + // 注意,尽管 RFC3986 保留 "!",但 RFC5987 并没有 // 所以我们并不需要过滤它         replace(/['()]/g, escape). // i.e., %27 %28 %29         replace(/\*/g, '%2A'). -- cgit v1.2.3-54-g00ecf