summaryrefslogtreecommitdiffhomepage
path: root/fr-fr
diff options
context:
space:
mode:
authorkevinnls <57634663+kevinnls@users.noreply.github.com>2020-08-20 13:24:05 +0530
committerkevinnls <57634663+kevinnls@users.noreply.github.com>2020-08-20 13:24:05 +0530
commitc4175c9f62d0aba25d619b4ec09307c4b8abd27a (patch)
treec40c0f622230e8ce031cdf0dc74a465a839bb108 /fr-fr
parentf92694aac9c1b84d06455e728d76fa339eddc312 (diff)
traduction
i forgot this was the french doc
Diffstat (limited to 'fr-fr')
-rw-r--r--fr-fr/javascript-fr.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/fr-fr/javascript-fr.html.markdown b/fr-fr/javascript-fr.html.markdown
index fa9ffa04..186859ab 100644
--- a/fr-fr/javascript-fr.html.markdown
+++ b/fr-fr/javascript-fr.html.markdown
@@ -332,7 +332,7 @@ description; // = "Paul Ken 18 "
// (ce qui inclut les objets Array, Map, Set, String, ... Mais pas un objet littéral !)
let myPets = "";
const pets = ["cat", "dog", "hamster", "hedgehog"];
-for (let pet of pets){ //`(const pet of pets)` is also possible
+for (let pet of pets){ //`(const pet of pets)` est également possible
myPets += pet + " ";
}