From 98f416cc96ef56dee9e88450642248eca0f399bc Mon Sep 17 00:00:00 2001 From: hyemimi Date: Sat, 1 Aug 2026 21:57:06 +0900 Subject: [PATCH] doc: fix grammar in worker_threads.md Signed-off-by: hyemimi --- doc/api/worker_threads.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/worker_threads.md b/doc/api/worker_threads.md index e137722674b3..f95837fb9404 100644 --- a/doc/api/worker_threads.md +++ b/doc/api/worker_threads.md @@ -1836,8 +1836,8 @@ is done within the event loop. So the event loop utilization is immediately available once the worker's script begins execution. An `idle` time that does not increase does not indicate that the worker is -stuck in bootstrap. The following examples shows how the worker's entire -lifetime never accumulates any `idle` time, but is still be able to process +stuck in bootstrap. The following example shows how the worker's entire +lifetime never accumulates any `idle` time, but is still able to process messages. ```mjs