Skip to content

Commit a41e3eb

Browse files
wjabbourtargos
authored andcommitted
timers: correct explanation in comment
PR-URL: #35437 Reviewed-By: Anatoli Papirovski <[email protected]> Reviewed-By: Rich Trott <[email protected]>
1 parent f6aa7c8 commit a41e3eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/internal/timers.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ function ImmediateList() {
261261
}
262262

263263
// Appends an item to the end of the linked list, adjusting the current tail's
264-
// previous and next pointers where applicable
264+
// next pointer and the item's previous pointer where applicable
265265
ImmediateList.prototype.append = function(item) {
266266
if (this.tail !== null) {
267267
this.tail._idleNext = item;

0 commit comments

Comments
 (0)