Skip to content

Commit e9f2ec4

Browse files
darai0512jasnell
authored andcommittedApr 4, 2017
doc: fix the timing of setImmediate's execution
About setImmediate, the execution timing is after timers currently. PR-URL: #12034 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Vse Mozhet Byt <[email protected]> Reviewed-By: Yuta Hiroto <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Anna Henningsen <[email protected]>
1 parent 0844262 commit e9f2ec4

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed
 

‎doc/api/timers.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,7 @@ added: v0.9.1
7575
* `...args` {any} Optional arguments to pass when the `callback` is called.
7676

7777
Schedules the "immediate" execution of the `callback` after I/O events'
78-
callbacks and before timers created using [`setTimeout()`][] and
79-
[`setInterval()`][] are triggered. Returns an `Immediate` for use with
80-
[`clearImmediate()`][].
78+
callbacks. Returns an `Immediate` for use with [`clearImmediate()`][].
8179

8280
When multiple calls to `setImmediate()` are made, the `callback` functions are
8381
queued for execution in the order in which they are created. The entire callback

0 commit comments

Comments
 (0)
Please sign in to comment.