aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api
diff options
context:
space:
mode:
authorJealh <65482530+Jealh-h@users.noreply.github.com>2022-01-13 00:31:34 +0800
committerGitHub <noreply@github.com>2022-01-13 00:31:34 +0800
commitc713027d99de1deebf51bca9f4acc3ef64972ead (patch)
tree7bab19388750ad6d229710608f3bcbac11d69a44 /files/zh-cn/web/api
parentfa974da224041834a7a7fa95d8b0d89a35ec11b3 (diff)
downloadtranslated-content-c713027d99de1deebf51bca9f4acc3ef64972ead.tar.gz
translated-content-c713027d99de1deebf51bca9f4acc3ef64972ead.tar.bz2
translated-content-c713027d99de1deebf51bca9f4acc3ef64972ead.zip
fix typo (#3646)
workder => worker
Diffstat (limited to 'files/zh-cn/web/api')
-rw-r--r--files/zh-cn/web/api/html_dom_api/microtask_guide/in_depth/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/web/api/html_dom_api/microtask_guide/in_depth/index.html b/files/zh-cn/web/api/html_dom_api/microtask_guide/in_depth/index.html
index f83b9bc3f4..2c6b11c964 100644
--- a/files/zh-cn/web/api/html_dom_api/microtask_guide/in_depth/index.html
+++ b/files/zh-cn/web/api/html_dom_api/microtask_guide/in_depth/index.html
@@ -124,7 +124,7 @@ greetUser("Veronica");</pre>
<dt>Window 事件循环</dt>
<dd>window 事件循环驱动所有同源的窗口 (though there are further limits to this as described elsewhere in this article XXXX ????).</dd>
<dt>Worker 事件循环</dt>
- <dd>worker 事件循环顾名思义就是驱动 worker 的事件循环。这包括了所有种类的 worker:最基本的 <a href="/en-US/docs/Web/API/Web_Workers_API">web worker</a> 以及 <a href="/en-US/docs/Web/API/SharedWorker">shared worker</a> 和 <a href="/en-US/docs/Web/API/Service_Worker_API">service worker</a>。 Worker 被放在一个或多个独立于 “主代码” 的代理中。浏览器可能会用单个或多个事件循环来处理给定类型的所有 workder。</dd>
+ <dd>worker 事件循环顾名思义就是驱动 worker 的事件循环。这包括了所有种类的 worker:最基本的 <a href="/en-US/docs/Web/API/Web_Workers_API">web worker</a> 以及 <a href="/en-US/docs/Web/API/SharedWorker">shared worker</a> 和 <a href="/en-US/docs/Web/API/Service_Worker_API">service worker</a>。 Worker 被放在一个或多个独立于 “主代码” 的代理中。浏览器可能会用单个或多个事件循环来处理给定类型的所有 worker。</dd>
<dt>Worklet 事件循环</dt>
<dd><a href="/en-US/docs/Web/API/Worklet">worklet</a> 事件循环用于驱动运行 worklet 的代理。这包含了 {{domxref("Worklet")}}、{{domxref("AudioWorklet")}} 以及 {{domxref("PaintWorklet")}}。</dd>
</dl>