diff options
author | Carolyn Wu <87150472+cw118@users.noreply.github.com> | 2022-03-01 13:47:30 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-01 19:47:30 +0100 |
commit | da412bbfa23b6e02dc33331891c6d4aee2bb7242 (patch) | |
tree | 9b12d2d411cefcd211382a3cfe935203731c0b80 /files/fr/web/api/idbobjectstore/get/index.md | |
parent | 2c46c339b552b185def6254d895d1529d61db4c0 (diff) | |
download | translated-content-da412bbfa23b6e02dc33331891c6d4aee2bb7242.tar.gz translated-content-da412bbfa23b6e02dc33331891c6d4aee2bb7242.tar.bz2 translated-content-da412bbfa23b6e02dc33331891c6d4aee2bb7242.zip |
Markdown fixes part 1 (fr/web/a*) (#4316)
* Fix MD038, no spaces inside code span elements
* Fix MD037, no spaces inside emphasis markers
* Fix MD039, no spaces inside link text
* Missed link text fix in API file
* Various typo fixes
Diffstat (limited to 'files/fr/web/api/idbobjectstore/get/index.md')
-rw-r--r-- | files/fr/web/api/idbobjectstore/get/index.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/fr/web/api/idbobjectstore/get/index.md b/files/fr/web/api/idbobjectstore/get/index.md index 0432355d73..14fed16a99 100644 --- a/files/fr/web/api/idbobjectstore/get/index.md +++ b/files/fr/web/api/idbobjectstore/get/index.md @@ -40,7 +40,7 @@ var request = objectStore.get(cle); Dans le code suivant , on ouvre une {{domxref("IDBTransaction","transaction")}} sur la {{domxref("IDBDatabase","connexion")}} à la base de données, pour avoir l'{{domxref("IDBObjectStore","accès")}} au magasin d'objet dans lequel on veut retrouver la valeur d'un enregistrement. -La méthode **`get() `**sert à retrouver la valeur de l'enregistrement dont la clé est `Walk dog` dans magasin d'objets _`toDoList`_ +La méthode **`get()`** sert à retrouver la valeur de l'enregistrement dont la clé est `Walk dog` dans le magasin d'objets _`toDoList`_. ```js // ouvre la connexion à la base de données |