Skip to content

Commit cd1df94

Browse files
pakobarbakadzePako Barbakadze
authored andcommitted
docs: link event loop
1 parent 4c3d46d commit cd1df94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/site/pages/en/learn/asynchronous-work/discover-promises-in-nodejs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ console.log('Synchronous task executed');
367367

368368
### `setImmediate()`
369369

370-
`setImmediate()` schedules a callback to be executed in the check phase of the Node.js event loop, which runs after the poll phase, where most I/O callbacks are processed.
370+
`setImmediate()` schedules a callback to be executed in the check phase of the Node.js [event loop](https://nodejs.org/en/learn/asynchronous-work/event-loop-timers-and-nexttick), which runs after the poll phase, where most I/O callbacks are processed.
371371

372372
```js
373373
setImmediate(() => {

0 commit comments

Comments
 (0)