Skip to content

Commit 035a021

Browse files
committed
Update event-loop-timers-and-nexttick.md
1 parent 3bedb43 commit 035a021

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/site/pages/en/learn/asynchronous-work/event-loop-timers-and-nexttick.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ longer than a timer's threshold. See the [**timers**](#timers) and
8888
- **close callbacks**: some close callbacks, e.g. `socket.on('close', ...)`
8989
- **timers**: this phase executes callbacks scheduled by `setTimeout()`
9090
and `setInterval()`. Additionally, these callbacks can execute before entering the event loop.
91-
This sometimes happens for setTimeout(() => { ... }, 0) outside the I/O loop.
91+
This sometimes happens for setTimeout(() => { ... }, 0) outside the I/O loop.
9292

9393
Between each run of the event loop, Node.js checks if it is waiting for
9494
any asynchronous I/O or timers and shuts down cleanly if there are not

0 commit comments

Comments
 (0)