aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/history_api/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/fr/web/api/history_api/index.html')
-rw-r--r--files/fr/web/api/history_api/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/fr/web/api/history_api/index.html b/files/fr/web/api/history_api/index.html
index 6fc89eae15..b7d1b6a1e5 100644
--- a/files/fr/web/api/history_api/index.html
+++ b/files/fr/web/api/history_api/index.html
@@ -122,7 +122,7 @@ history.pushState(stateObj, "page 2", "bar.html");
<h3 id="Exemple_de_la_méthode_replaceState()">Exemple de la méthode replaceState()</h3>
-<p>Supposons que http://mozilla.org/foo.html exécute le code JavaScript suivant :</p>
+<p>Supposons que <code>http://mozilla.org/foo.html</code> exécute le code JavaScript suivant :</p>
<pre class="brush: js">var stateObj = { foo: "bar" };
history.pushState(stateObj, "page 2", "bar.html");</pre>