diff options
author | Mallory Dessaintes <mdessaintes@gmail.com> | 2021-11-16 12:47:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-16 12:47:43 +0100 |
commit | 19dc08ff2622b0714a7338b44de8787a0307d7de (patch) | |
tree | 0f3d409bdfd972c6b16fc78700c82569b225064e /files | |
parent | f0861333ad5d033697388048825f40b64b0e4b3e (diff) | |
download | translated-content-19dc08ff2622b0714a7338b44de8787a0307d7de.tar.gz translated-content-19dc08ff2622b0714a7338b44de8787a0307d7de.tar.bz2 translated-content-19dc08ff2622b0714a7338b44de8787a0307d7de.zip |
Typo fix (#3118)
Diffstat (limited to 'files')
-rw-r--r-- | files/fr/web/api/idbobjectstore/index.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/fr/web/api/idbobjectstore/index.md b/files/fr/web/api/idbobjectstore/index.md index e1925953f3..4c761abec2 100644 --- a/files/fr/web/api/idbobjectstore/index.md +++ b/files/fr/web/api/idbobjectstore/index.md @@ -121,7 +121,7 @@ var objectStore = transaction.objectStore("toDoList"); // Ajoute l'enregistrement au magasin d'objet var objectStoreRequest = objectStore.add(newItem[0]); -//l'enregistrement c'est bien passé. +//l'enregistrement s'est bien passé. objectStoreRequest.onsuccess = function(event) { note.innerHTML += '<li>L\'enregistrement à été ajouté au magasin d\'objet.</li>'; } |