aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/javascript/reference/global_objects/math/clz32/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/javascript/reference/global_objects/math/clz32/index.html')
-rw-r--r--files/ru/web/javascript/reference/global_objects/math/clz32/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ru/web/javascript/reference/global_objects/math/clz32/index.html b/files/ru/web/javascript/reference/global_objects/math/clz32/index.html
index 127ae43179..1239cca78e 100644
--- a/files/ru/web/javascript/reference/global_objects/math/clz32/index.html
+++ b/files/ru/web/javascript/reference/global_objects/math/clz32/index.html
@@ -56,7 +56,7 @@ Math.clz32(true); // 31
Math.clz32(3.5); // 30
</pre>
-<h2 id="Polyfill" name="Polyfill">Полифилл</h2>
+<h2 id="Polyfill" name="Polyfill">Полифил</h2>
<pre class="brush: js">Math.clz32 = Math.clz32 || function(value) {
value = Number(value) &gt;&gt;&gt; 0;