Skip to content

Commit 3517c2a

Browse files
committed
fix: use more clear words to summary
1 parent c53b877 commit 3517c2a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/site/pages/en/learn/asynchronous-work/understanding-processnexttick.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ Running at order 3 or 4, setTimeout
5454

5555
In that case, `console.log('Hello => number 1');` will first run because event loop only starts after call stack is cleared.The `nextTick` queue is processed before entering the next phase, which is why the `process.nextTick()` callback runs immediately after.
5656

57-
The execution order of `serImmediate` and `setTimeout` can not be determined in the main module. For a detailed explanation, refer to [setImmediate vs setTimeout](https://nodejs.org/en/learn/asynchronous-work/event-loop-timers-and-nexttick#setimmediate-vs-settimeout).
57+
The execution order of `setImmediate()` and `setTimeout()` can very based on the execution contexts. For more information, refer to [`setImmediate()` vs `setTimeout()`](https://nodejs.org/en/learn/asynchronous-work/event-loop-timers-and-nexttick#setimmediate-vs-settimeout).

0 commit comments

Comments
 (0)