diff options
author | Believers in Science Studio <rsworktech@outlook.com> | 2021-09-17 08:21:10 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-17 08:21:10 +0800 |
commit | 3d02f83efb6574860cee47577447b0b32f8d675d (patch) | |
tree | 5a04141c966d050855a406b872c224aeeb24745f /files/zh-cn/web/javascript | |
parent | b06871f75b88e03b54d6b5327da651b995eef6ef (diff) | |
download | translated-content-3d02f83efb6574860cee47577447b0b32f8d675d.tar.gz translated-content-3d02f83efb6574860cee47577447b0b32f8d675d.tar.bz2 translated-content-3d02f83efb6574860cee47577447b0b32f8d675d.zip |
Fix several formating issues, zh-CN (#2442)
* Fix a typo.
* Fix another similar typo.
* Fix typos in `::first-line` doc.
* Move chinese characters out of `<code>`.
Diffstat (limited to 'files/zh-cn/web/javascript')
-rw-r--r-- | files/zh-cn/web/javascript/a_re-introduction_to_javascript/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/web/javascript/a_re-introduction_to_javascript/index.html b/files/zh-cn/web/javascript/a_re-introduction_to_javascript/index.html index bcf94763b0..7c567f3902 100644 --- a/files/zh-cn/web/javascript/a_re-introduction_to_javascript/index.html +++ b/files/zh-cn/web/javascript/a_re-introduction_to_javascript/index.html @@ -327,7 +327,7 @@ do { <pre class="brush: js notranslate">var allowed = (age > 18) ? "yes" : "no"; </pre> -<p>在需要多重分支时可以使用 <code>基于一个数字或字符串的switch</code> 语句:</p> +<p>在需要多重分支时可以使用基于一个数字或字符串的 <code>switch</code> 语句:</p> <pre class="brush: js notranslate">switch(action) { case 'draw': |