diff options
author | Alexey Pyltsyn <lex61rus@gmail.com> | 2021-03-18 20:11:37 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-18 20:11:37 +0300 |
commit | 100316f2f54500ba714391b4f6940e96bd246b77 (patch) | |
tree | a28cbef79be92b65373152c0aa2519f03807302d /files/ru/web/javascript | |
parent | 92ec3abaed21f67e7ca74ce02ddd96f0bdbe3f50 (diff) | |
download | translated-content-100316f2f54500ba714391b4f6940e96bd246b77.tar.gz translated-content-100316f2f54500ba714391b4f6940e96bd246b77.tar.bz2 translated-content-100316f2f54500ba714391b4f6940e96bd246b77.zip |
Remove redundant RTL direction in Russian translation (#216)
Diffstat (limited to 'files/ru/web/javascript')
3 files changed, 3 insertions, 3 deletions
diff --git a/files/ru/web/javascript/inheritance_and_the_prototype_chain/index.html b/files/ru/web/javascript/inheritance_and_the_prototype_chain/index.html index 7f6f3fab86..bf82041c88 100644 --- a/files/ru/web/javascript/inheritance_and_the_prototype_chain/index.html +++ b/files/ru/web/javascript/inheritance_and_the_prototype_chain/index.html @@ -8,7 +8,7 @@ tags: - Прототип объекта translation_of: Web/JavaScript/Inheritance_and_the_prototype_chain --- -<p dir="rtl">{{jsSidebar("Advanced")}}</p> +<p>{{jsSidebar("Advanced")}}</p> <p>Модель наследования в JavaScript может озадачить опытных разработчиков на высокоуровневых объектно-ориентированных языках (таких, например, как Java или C++), поскольку она динамическая и не включает в себя реализацию понятия <code>class</code> (хотя ключевое слово <code>class,</code> бывшее долгие годы зарезервированным, и приобрело практическое значение в стандарте ES2015, однако, Class в JavaScript ES>=6 представляет собой лишь "синтаксический сахар" поверх прототипно-ориентированной модели наследования).</p> diff --git a/files/ru/web/javascript/reference/operators/this/index.html b/files/ru/web/javascript/reference/operators/this/index.html index 2176ebbdef..6bf5f9f20a 100644 --- a/files/ru/web/javascript/reference/operators/this/index.html +++ b/files/ru/web/javascript/reference/operators/this/index.html @@ -81,7 +81,7 @@ f2() === undefined; // true <p><strong>Пример 1</strong></p> -<pre dir="rtl"><code>// </code>В качестве первого аргумента методов<code> call или apply</code> может быть передан объект<code>, +<pre><code>// </code>В качестве первого аргумента методов<code> call или apply</code> может быть передан объект<code>, // на который будет указывать this.</code><code> var obj = {a: 'Custom'}; diff --git a/files/ru/web/javascript/reference/statements/function_star_/index.html b/files/ru/web/javascript/reference/statements/function_star_/index.html index 69567963bb..0ad2484d9d 100644 --- a/files/ru/web/javascript/reference/statements/function_star_/index.html +++ b/files/ru/web/javascript/reference/statements/function_star_/index.html @@ -55,7 +55,7 @@ console.log(gen.next().value); // undefined <h3 id="Пример_с_yield*">Пример с yield*</h3> -<pre class="brush: js" dir="rtl">function* anotherGenerator(i) { +<pre class="brush: js">function* anotherGenerator(i) { yield i + 1; yield i + 2; yield i + 3; |