diff options
Diffstat (limited to 'files/ru/web/api/node/appendchild')
-rw-r--r-- | files/ru/web/api/node/appendchild/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ru/web/api/node/appendchild/index.html b/files/ru/web/api/node/appendchild/index.html index e011179528..149d9b9b98 100644 --- a/files/ru/web/api/node/appendchild/index.html +++ b/files/ru/web/api/node/appendchild/index.html @@ -45,7 +45,7 @@ translation_of: Web/API/Node/appendChild <h2 id="Example" name="Example">Пример</h2> -<pre class="brush:js notranslate">// Создаем новый элемент параграфа, и вставляем в конец document body +<pre class="brush:js notranslate">// Создаём новый элемент параграфа, и вставляем в конец document body var p = document.createElement("p"); document.body.appendChild(p);</pre> |