aboutsummaryrefslogtreecommitdiff
path: root/files
diff options
context:
space:
mode:
authorSphinxKnight <SphinxKnight@users.noreply.github.com>2021-03-10 13:09:13 +0100
committerGitHub <noreply@github.com>2021-03-10 13:09:13 +0100
commitf7b50974a90e9ed2284fd375005357660ef10b5e (patch)
tree0d359237590f9cd4015e30cc97bdde389e239a3d /files
parentb385d8ed8f55b89ac2abcb927a9b474a0d51f11c (diff)
parentc150e9e82b60f25875771d8e3a237cdb07802732 (diff)
downloadtranslated-content-f7b50974a90e9ed2284fd375005357660ef10b5e.tar.gz
translated-content-f7b50974a90e9ed2284fd375005357660ef10b5e.tar.bz2
translated-content-f7b50974a90e9ed2284fd375005357660ef10b5e.zip
Merge pull request #92 from kptdobe/patch-1
Fix typo in sample result
Diffstat (limited to 'files')
-rw-r--r--files/fr/web/api/childnode/after/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/files/fr/web/api/childnode/after/index.html b/files/fr/web/api/childnode/after/index.html
index 60fc5d339d..474d64a307 100644
--- a/files/fr/web/api/childnode/after/index.html
+++ b/files/fr/web/api/childnode/after/index.html
@@ -56,7 +56,7 @@ parent.appendChild(child);
child.after("Text");
console.log(parent.outerHTML);
-// "&lt;div&gt;&lt;p&gt;&lt;/p&gt;Texte&lt;/div&gt;"</pre>
+// "&lt;div&gt;&lt;p&gt;&lt;/p&gt;Text&lt;/div&gt;"</pre>
<h3 id="Insertion_d'un_élément_et_de_texte">Insertion d'un élément et de  texte</h3>
@@ -68,7 +68,7 @@ var span = document.createElement("span");
child.after(span, "Text");
console.log(parent.outerHTML);
-// "&lt;div&gt;&lt;p&gt;&lt;/p&gt;&lt;span&gt;&lt;/span&gt;Texte&lt;/div&gt;"</pre>
+// "&lt;div&gt;&lt;p&gt;&lt;/p&gt;&lt;span&gt;&lt;/span&gt;Text&lt;/div&gt;"</pre>
<h3 id="ChildNode.after()_n'est_pas_accessible"><code>ChildNode.after()</code> n'est pas accessible</h3>