diff options
author | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-07-31 10:55:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-31 10:55:22 +0200 |
commit | 07727c4cb132780143a67d292e18034173cb7fa0 (patch) | |
tree | 752094739fadd3906c62dd3e5724d85143a295d6 /files/fr/web/javascript/reference/errors | |
parent | b22fd7d3837d4ed6f8b31f4fecf4046062399fa1 (diff) | |
download | translated-content-07727c4cb132780143a67d292e18034173cb7fa0.tar.gz translated-content-07727c4cb132780143a67d292e18034173cb7fa0.tar.bz2 translated-content-07727c4cb132780143a67d292e18034173cb7fa0.zip |
Fix md conversion reports: code (#1815)
Diffstat (limited to 'files/fr/web/javascript/reference/errors')
-rw-r--r-- | files/fr/web/javascript/reference/errors/illegal_character/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/fr/web/javascript/reference/errors/illegal_character/index.html b/files/fr/web/javascript/reference/errors/illegal_character/index.html index fc8d03ad5f..9c886718f5 100644 --- a/files/fr/web/javascript/reference/errors/illegal_character/index.html +++ b/files/fr/web/javascript/reference/errors/illegal_character/index.html @@ -61,7 +61,7 @@ var toto = "truc"; // SyntaxError: illegal character </pre> -<p>Dans ce cas, il suffit de rajouter la quote pour <code><strong>'</strong>#333'</code>.</p> +<p>Dans ce cas, il suffit de rajouter la quote pour <code>'#333'</code>.</p> <pre class="brush: js example-good">var couleurs = ['#000', '#333', '#666'];</pre> |