aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/javascript/reference/statements/function_star_/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/javascript/reference/statements/function_star_/index.html')
-rw-r--r--files/ru/web/javascript/reference/statements/function_star_/index.html2
1 files changed, 1 insertions, 1 deletions
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;