diff options
author | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-07-30 20:18:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-30 20:18:17 +0200 |
commit | 2a76c37d0e733dedf8ed87d1e7e46caf3c44667e (patch) | |
tree | eef4e1f7f84846e950ff27780bf447000542d4e0 /files/fr/web/javascript/reference/functions/arrow_functions | |
parent | 6f195c0befca01246e2db1c38a65628baf1938e1 (diff) | |
download | translated-content-2a76c37d0e733dedf8ed87d1e7e46caf3c44667e.tar.gz translated-content-2a76c37d0e733dedf8ed87d1e7e46caf3c44667e.tar.bz2 translated-content-2a76c37d0e733dedf8ed87d1e7e46caf3c44667e.zip |
Prepare JS French section for Markdown (#1574)
* Rm IDs w/ [^h\d] id="
* Remove class="hidden"
* Remove hidden for code blocks
* rm summary classes
* Use Note consistently
* Remove sup
* Rm code in pre
* Fixes dd/dt/dl
* Fix some more dd
* Remove inline style and useless/craft from span/font
* h2m report fixing - Consistent use of notes
* h2m report fixing - Consistent use of warnings
* h2m report fixing - reword one callout
* h2m report fixing - array cruft spans hell
* Cleaning the rest of docs for md conversion
Diffstat (limited to 'files/fr/web/javascript/reference/functions/arrow_functions')
-rw-r--r-- | files/fr/web/javascript/reference/functions/arrow_functions/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/fr/web/javascript/reference/functions/arrow_functions/index.html b/files/fr/web/javascript/reference/functions/arrow_functions/index.html index a956e7e39b..8beaaa3098 100644 --- a/files/fr/web/javascript/reference/functions/arrow_functions/index.html +++ b/files/fr/web/javascript/reference/functions/arrow_functions/index.html @@ -61,7 +61,7 @@ f(); <p>Deux facteurs sont à l’origine de la conception des fonctions fléchées : une syntaxe plus courte et l’absence de <code>this</code> spécifique à la fonction. Sur ce dernier point, cela signifie qu’une fonction fléchée ne lie pas son propre {{jsxref("Opérateurs/L_opérateur_this","this")}} au sein de la fonction (il en va de même avec {{jsxref("Fonctions/arguments","arguments")}}, {{jsxref("Opérateurs/super","super")}} ou {{jsxref("Opérateurs/new.target","new.target")}}).</p> <div class="note"> -<p>Voir aussi l’article sur les fonctions fléchées présent sur <a href="https://tech.mozfr.org/post/2015/06/10/ES6-en-details-%3A-les-fonctions-flechees">https://tech.mozfr.org/post/2015/06/10/ES6-en-details-%3A-les-fonctions-flechees</a> (l’article original en anglais est disponible <a href="https://hacks.mozilla.org/2015/06/es6-in-depth-arrow-functions/">ici</a>).</p> +<p><strong>Note :</strong> Voir aussi l’article sur les fonctions fléchées présent sur <a href="https://tech.mozfr.org/post/2015/06/10/ES6-en-details-%3A-les-fonctions-flechees">https://tech.mozfr.org/post/2015/06/10/ES6-en-details-%3A-les-fonctions-flechees</a> (l’article original en anglais est disponible <a href="https://hacks.mozilla.org/2015/06/es6-in-depth-arrow-functions/">ici</a>).</p> </div> <h3 id="Syntaxe_plus_courte">Syntaxe plus courte</h3> |