aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/javascript/reference/operators/subtraction_assignment/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-cn/web/javascript/reference/operators/subtraction_assignment/index.html')
-rw-r--r--files/zh-cn/web/javascript/reference/operators/subtraction_assignment/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/files/zh-cn/web/javascript/reference/operators/subtraction_assignment/index.html b/files/zh-cn/web/javascript/reference/operators/subtraction_assignment/index.html
index 93dc5a138b..9d96a67f7e 100644
--- a/files/zh-cn/web/javascript/reference/operators/subtraction_assignment/index.html
+++ b/files/zh-cn/web/javascript/reference/operators/subtraction_assignment/index.html
@@ -15,14 +15,14 @@ translation_of: Web/JavaScript/Reference/Operators/Subtraction_assignment
<h2 id="语法">语法</h2>
-<pre class="syntaxbox notranslate"><strong>Operator:</strong> x -= y
+<pre class="syntaxbox"><strong>Operator:</strong> x -= y
<strong>Meaning:</strong> x = x - y</pre>
<h2 id="Examples">Examples</h2>
<h3 id="Using_subtraction_assignment">Using subtraction assignment</h3>
-<pre class="brush: js notranslate">// Assuming the following variable
+<pre class="brush: js">// Assuming the following variable
// bar = 5
bar -= 2 // 3