aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/javascript/reference/operators/decrement/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/javascript/reference/operators/decrement/index.html')
-rw-r--r--files/ru/web/javascript/reference/operators/decrement/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/files/ru/web/javascript/reference/operators/decrement/index.html b/files/ru/web/javascript/reference/operators/decrement/index.html
index 722d4a5889..64d29374a3 100644
--- a/files/ru/web/javascript/reference/operators/decrement/index.html
+++ b/files/ru/web/javascript/reference/operators/decrement/index.html
@@ -18,7 +18,7 @@ translation_of: Web/JavaScript/Reference/Operators/Decrement
<h2 id="Синтаксис">Синтаксис</h2>
-<pre class="syntaxbox notranslate"><strong>Operator:</strong> <var>x</var>-- or --<var>x</var>
+<pre class="syntaxbox"><strong>Operator:</strong> <var>x</var>-- or --<var>x</var>
</pre>
<h2 id="Описание">Описание</h2>
@@ -31,7 +31,7 @@ translation_of: Web/JavaScript/Reference/Operators/Decrement
<h3 id="Постфиксный_декремент">Постфиксный декремент</h3>
-<pre class="brush: js notranslate">let x = 3;
+<pre class="brush: js">let x = 3;
y = x--;
// y = 3
@@ -40,7 +40,7 @@ y = x--;
<h3 id="Префиксный_декремент">Префиксный декремент</h3>
-<pre class="brush: js notranslate">let a = 2;
+<pre class="brush: js">let a = 2;
b = --a;
// a = 1