diff options
author | Carolyn Wu <87150472+cw118@users.noreply.github.com> | 2022-03-03 02:35:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-03 08:35:24 +0100 |
commit | 581e6fb5827a5450e295c91250dd0563a3c9251a (patch) | |
tree | 801de6432e274e1a53bb3b1f6151e447915ffda8 /files/fr/web/javascript/reference/functions/arguments | |
parent | da1500b5765037b2ec3db0190f3accac453c6d96 (diff) | |
download | translated-content-581e6fb5827a5450e295c91250dd0563a3c9251a.tar.gz translated-content-581e6fb5827a5450e295c91250dd0563a3c9251a.tar.bz2 translated-content-581e6fb5827a5450e295c91250dd0563a3c9251a.zip |
Markdown fixes part 4 (fr/web/js) (#4373)
* Fix MD038, no spaces in code spans
* Fix MD037/39, no spaces in emphasis/link text
* Missed markdown fixes in code spans
* Bold formatting correction
Diffstat (limited to 'files/fr/web/javascript/reference/functions/arguments')
-rw-r--r-- | files/fr/web/javascript/reference/functions/arguments/callee/index.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/fr/web/javascript/reference/functions/arguments/callee/index.md b/files/fr/web/javascript/reference/functions/arguments/callee/index.md index bb8c7d6fa3..3f9e24ec08 100644 --- a/files/fr/web/javascript/reference/functions/arguments/callee/index.md +++ b/files/fr/web/javascript/reference/functions/arguments/callee/index.md @@ -23,7 +23,7 @@ La propriété **`arguments.callee`** contient la fonction en cours d'exécution ### Pourquoi `arguments.callee` a-t-il été retiré du mode strict ES5 ? -(adapté d'une réponse[ Stack Overflow par olliej](http://stackoverflow.com/a/235760/578288 "http://stackoverflow.com/a/235760/578288")) +(adapté d'une réponse [Stack Overflow par olliej](http://stackoverflow.com/a/235760/578288 "http://stackoverflow.com/a/235760/578288")) Aux débuts de JavaScript, il n'était pas possible d'utiliser des expressions de fonction avec des noms. Il était donc impossible de faire une expression de fonction récursive. |