aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFangYing <linfanne@gmail.com>2021-07-09 17:12:05 +0800
committerGitHub <noreply@github.com>2021-07-09 17:12:05 +0800
commitd0ccf3c5368fba27e5d93e131191c1079994babc (patch)
tree1770dd83858ba73abf83df071d7637e9511d8a50
parentf22cd875cb3ef0765976edda68291fe41b3b81c5 (diff)
downloadtranslated-content-d0ccf3c5368fba27e5d93e131191c1079994babc.tar.gz
translated-content-d0ccf3c5368fba27e5d93e131191c1079994babc.tar.bz2
translated-content-d0ccf3c5368fba27e5d93e131191c1079994babc.zip
(docs) fix a wrong word (#1450)
每一各 -> 每一个
-rw-r--r--files/zh-cn/webassembly/using_the_javascript_api/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/webassembly/using_the_javascript_api/index.html b/files/zh-cn/webassembly/using_the_javascript_api/index.html
index 91b318c700..a27c466a49 100644
--- a/files/zh-cn/webassembly/using_the_javascript_api/index.html
+++ b/files/zh-cn/webassembly/using_the_javascript_api/index.html
@@ -245,7 +245,7 @@ console.log(tbl.get(1)());  // 42</pre>
</li>
</ol>
-<p>这段代码获取获取了存储在表格中的每一个函数引用,然后实例化它们从而将它们拥有的值打印到控制台——注意每一各函数引用是如何使用<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Table/get">Table.prototype.get()</a>函数获取的以及在其后面增加一对小括号从而真正的调用该函数。</p>
+<p>这段代码获取获取了存储在表格中的每一个函数引用,然后实例化它们从而将它们拥有的值打印到控制台——注意每一个函数引用是如何使用<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Table/get">Table.prototype.get()</a>函数获取的以及在其后面增加一对小括号从而真正的调用该函数。</p>
<div class="note">
<p><strong>注</strong>:你可以在<a href="https://github.com/mdn/webassembly-examples/blob/master/js-api-examples/table.html">table.html</a> (<a href="https://mdn.github.io/webassembly-examples/js-api-examples/table.html">或实时查看运行</a>)找到我们完整的示例——这个版本使用了<code><a href="https://github.com/mdn/webassembly-examples/blob/master/wasm-utils.js">fetchAndInstantiate()</a></code>函数。</p>