From 1b10adcfc2d03a51885f7bf4d9bc6698a1013c40 Mon Sep 17 00:00:00 2001 From: Saeed <32861976+saeid1994@users.noreply.github.com> Date: Sat, 11 Jan 2025 01:29:52 +0330 Subject: [PATCH] Update event-loop-timers-and-nexttick.md (#7364) Fix typo in event loop documentation: replace 'a person' with 'the event loop' for clarity and accuracy. Signed-off-by: Saeed <32861976+saeid1994@users.noreply.github.com> --- .../learn/asynchronous-work/event-loop-timers-and-nexttick.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/site/pages/en/learn/asynchronous-work/event-loop-timers-and-nexttick.md b/apps/site/pages/en/learn/asynchronous-work/event-loop-timers-and-nexttick.md index 0515ed1a4d9bd..1f6680e9464ab 100644 --- a/apps/site/pages/en/learn/asynchronous-work/event-loop-timers-and-nexttick.md +++ b/apps/site/pages/en/learn/asynchronous-work/event-loop-timers-and-nexttick.md @@ -190,7 +190,7 @@ those timers' callbacks. ### check -This phase allows a person to execute callbacks immediately after the +This phase allows the event loop to execute callbacks immediately after the **poll** phase has completed. If the **poll** phase becomes idle and scripts have been queued with `setImmediate()`, the event loop may continue to the **check** phase rather than waiting.