aboutsummaryrefslogtreecommitdiff
path: root/files/zh-tw
diff options
context:
space:
mode:
authorCheng-Ying Li <newtaiwanstar@gmail.com>2021-06-27 23:47:32 +0800
committerIrvin <irvinfly@gmail.com>2021-06-28 00:22:26 +0800
commitd10853f2974221fbee8cdea786bce536e61083ec (patch)
treeda980a3f394193a6ebde424bd0fce39f93a28908 /files/zh-tw
parenta3210bd3f5113f41957a4d16bb32d4a687e0e6bb (diff)
downloadtranslated-content-d10853f2974221fbee8cdea786bce536e61083ec.tar.gz
translated-content-d10853f2974221fbee8cdea786bce536e61083ec.tar.bz2
translated-content-d10853f2974221fbee8cdea786bce536e61083ec.zip
[doc] Correct words
修改同音錯字
Diffstat (limited to 'files/zh-tw')
-rw-r--r--files/zh-tw/web/javascript/eventloop/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-tw/web/javascript/eventloop/index.html b/files/zh-tw/web/javascript/eventloop/index.html
index 8bea43cf87..5518397de9 100644
--- a/files/zh-tw/web/javascript/eventloop/index.html
+++ b/files/zh-tw/web/javascript/eventloop/index.html
@@ -70,7 +70,7 @@ console.log(bar(7));
<h3 id="零延遲(Zero_delays)">零延遲(Zero delays)</h3>
-<p>「零延遲」並非意味著回呼函式(callback function)會在 0 毫秒之後立刻執行。當使用延遲 0 毫秒參數來呼叫 {{domxref("WindowTimers.setTimeout", "setTimeout")}} 函式並非示程式會過了該段時間就會執行,而是會參考佇列中等待的訊息數量。<br>
+<p>「零延遲」並非意味著回呼函式(callback function)會在 0 毫秒之後立刻執行。當使用延遲 0 毫秒參數來呼叫 {{domxref("WindowTimers.setTimeout", "setTimeout")}} 函式並非是程式會過了該段時間就會執行,而是會參考佇列中等待的訊息數量。<br>
在下面範例中,「this is just a message」會寫在 setTimeout 的回呼訊息被執行之前,因為該時間段參數是要求執行環境處理所需的最少等待時間,而非一個保證時間。</p>
<pre class="brush: js">(function() {