aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/api/selection
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/api/selection')
-rw-r--r--files/ru/web/api/selection/tostring/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ru/web/api/selection/tostring/index.html b/files/ru/web/api/selection/tostring/index.html
index 63899ce9d7..0e1dede357 100644
--- a/files/ru/web/api/selection/tostring/index.html
+++ b/files/ru/web/api/selection/tostring/index.html
@@ -30,7 +30,7 @@ translation_of: Web/API/Selection/toString
<p>Этот метод возвращает выделенный текст.</p>
-<p>В <a href="en/JavaScript">JavaScript</a>, этот метод вызывается автоматически, когда функция, которой он передается, требует строку:</p>
+<p>В <a href="en/JavaScript">JavaScript</a>, этот метод вызывается автоматически, когда функция, которой он передаётся, требует строку:</p>
<pre class="brush: js">alert(window.getSelection()) // What is called
alert(window.getSelection().toString()) // What is actually being effectively called.