aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/javascript/reference/global_objects/string/codepointat/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/javascript/reference/global_objects/string/codepointat/index.html')
-rw-r--r--files/ru/web/javascript/reference/global_objects/string/codepointat/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/files/ru/web/javascript/reference/global_objects/string/codepointat/index.html b/files/ru/web/javascript/reference/global_objects/string/codepointat/index.html
index db2b8a4e19..f14984662d 100644
--- a/files/ru/web/javascript/reference/global_objects/string/codepointat/index.html
+++ b/files/ru/web/javascript/reference/global_objects/string/codepointat/index.html
@@ -27,7 +27,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/String/codePointAt
<dl>
<dt><code>pos</code></dt>
- <dd>Позиция элемента в строке, чья кодовоя точка возвращается функцией.</dd>
+ <dd>Позиция элемента в строке, чья кодовая точка возвращается функцией.</dd>
</dl>
<h2 id="Description" name="Description">Описание</h2>
@@ -44,9 +44,9 @@ translation_of: Web/JavaScript/Reference/Global_Objects/String/codePointAt
'XYZ'.codePointAt(42); // undefined
</pre>
-<h2 id="Polyfill" name="Polyfill">Полифилл</h2>
+<h2 id="Polyfill" name="Polyfill">Полифил</h2>
-<p>Следующий полифилл расширяет прототип строки определённой в ECMAScript 6 функцией <code>codePointAt()</code>, если браузер не имеет её родной поддержки.</p>
+<p>Следующий полифил расширяет прототип строки определённой в ECMAScript 6 функцией <code>codePointAt()</code>, если браузер не имеет её родной поддержки.</p>
<pre class="brush: js">/*! http://mths.be/codepointat v0.1.0 от @mathias */
if (!String.prototype.codePointAt) {