aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorserotonyn <youyou1youcef@gmail.com>2022-03-11 22:56:18 +0100
committerGitHub <noreply@github.com>2022-03-11 16:56:18 -0500
commit6c17e71cc7dc70f7a33c532d29d8b13670cdd729 (patch)
tree18f8feba9cbc7d58468ea6608173da3b9f9b5635
parentc19f033e0b60ae59dd2750c3ce85576c2db5a6ba (diff)
downloadtranslated-content-6c17e71cc7dc70f7a33c532d29d8b13670cdd729.tar.gz
translated-content-6c17e71cc7dc70f7a33c532d29d8b13670cdd729.tar.bz2
translated-content-6c17e71cc7dc70f7a33c532d29d8b13670cdd729.zip
Fix typo (#4555)
-rw-r--r--files/fr/web/javascript/guide/working_with_objects/index.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/fr/web/javascript/guide/working_with_objects/index.md b/files/fr/web/javascript/guide/working_with_objects/index.md
index 214902c6dd..9dbfe909e4 100644
--- a/files/fr/web/javascript/guide/working_with_objects/index.md
+++ b/files/fr/web/javascript/guide/working_with_objects/index.md
@@ -348,7 +348,7 @@ On peut définir des méthodes pour un type d'objet en incluant la définition d
```js
function afficheVoiture() {
let resultat = `Une belle ${this.modele}, fabriquée en ${this.annee} par ${this.fabricant}`;
- console.log(résultat);
+ console.log(resultat);
}
```