aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/javascript/reference/global_objects/webassembly/table
diff options
context:
space:
mode:
authorCarolyn Wu <87150472+cw118@users.noreply.github.com>2022-03-03 02:35:24 -0500
committerGitHub <noreply@github.com>2022-03-03 08:35:24 +0100
commit581e6fb5827a5450e295c91250dd0563a3c9251a (patch)
tree801de6432e274e1a53bb3b1f6151e447915ffda8 /files/fr/web/javascript/reference/global_objects/webassembly/table
parentda1500b5765037b2ec3db0190f3accac453c6d96 (diff)
downloadtranslated-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/global_objects/webassembly/table')
-rw-r--r--files/fr/web/javascript/reference/global_objects/webassembly/table/table/index.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/fr/web/javascript/reference/global_objects/webassembly/table/table/index.md b/files/fr/web/javascript/reference/global_objects/webassembly/table/table/index.md
index 55ee827e0e..6d23493ae3 100644
--- a/files/fr/web/javascript/reference/global_objects/webassembly/table/table/index.md
+++ b/files/fr/web/javascript/reference/global_objects/webassembly/table/table/index.md
@@ -36,7 +36,7 @@ new WebAssembly.Table(descripteurTable)
### Créer une nouvelle instance d'une Table WebAssembly
-Dans l'exemple suivant (voir [le code source](https://github.com/mdn/webassembly-examples/blob/master/js-api-examples/table2.html) et [la démo live ](https://mdn.github.io/webassembly-examples/js-api-examples/table2.html) correspondants), on crée une nouvelle instance d'une table WebAssembly avec une taille initiale de 2 éléments. On affiche alors la longueur de la table et son contenu (grâce à [`Table.prototype.get()`](/fr/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Table/get) pour montrer que la longueur vaut 2 et que les deux éléments sont [`null`](/fr/docs/Web/JavaScript/Reference/Global_Objects/null).
+Dans l'exemple suivant (voir [le code source](https://github.com/mdn/webassembly-examples/blob/master/js-api-examples/table2.html) et [la démo live](https://mdn.github.io/webassembly-examples/js-api-examples/table2.html) correspondants), on crée une nouvelle instance d'une table WebAssembly avec une taille initiale de 2 éléments. On affiche alors la longueur de la table et son contenu (grâce à [`Table.prototype.get()`](/fr/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Table/get) pour montrer que la longueur vaut 2 et que les deux éléments sont [`null`](/fr/docs/Web/JavaScript/Reference/Global_Objects/null).
```js
var tbl = new WebAssembly.Table({initial:2, element:"anyfunc"});