aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/javascript
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-cn/web/javascript')
-rw-r--r--files/zh-cn/web/javascript/a_re-introduction_to_javascript/index.html2
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 &gt; 18) ? "yes" : "no";
</pre>
-<p>在需要多重分支时可以使用  <code>基于一个数字或字符串的switch</code> 语句:</p>
+<p>在需要多重分支时可以使用基于一个数字或字符串的 <code>switch</code> 语句:</p>
<pre class="brush: js notranslate">switch(action) {
case 'draw':