From 100316f2f54500ba714391b4f6940e96bd246b77 Mon Sep 17 00:00:00 2001 From: Alexey Pyltsyn Date: Thu, 18 Mar 2021 20:11:37 +0300 Subject: Remove redundant RTL direction in Russian translation (#216) --- files/ru/web/javascript/inheritance_and_the_prototype_chain/index.html | 2 +- files/ru/web/javascript/reference/operators/this/index.html | 2 +- files/ru/web/javascript/reference/statements/function_star_/index.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'files/ru/web/javascript') 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 --- -

{{jsSidebar("Advanced")}}

+

{{jsSidebar("Advanced")}}

Модель наследования в JavaScript может озадачить опытных разработчиков на высокоуровневых объектно-ориентированных языках (таких, например, как Java или C++), поскольку она динамическая и не включает в себя реализацию понятия class (хотя ключевое слово class, бывшее долгие годы зарезервированным, и приобрело практическое значение в стандарте ES2015, однако, Class в JavaScript ES>=6 представляет собой лишь "синтаксический сахар" поверх прототипно-ориентированной модели наследования).

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

Пример 1

-
// В качестве первого аргумента методов call или apply может быть передан объект,
+
// В качестве первого аргумента методов call или apply может быть передан объект,
 // на который будет указывать this.
 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
 
 

Пример с yield*

-
function* anotherGenerator(i) {
+
function* anotherGenerator(i) {
   yield i + 1;
   yield i + 2;
   yield i + 3;
-- 
cgit v1.2.3-54-g00ecf