diff --git a/lib/internal/timers.js b/lib/internal/timers.js index c478a43de9b7d8..045994a23d0210 100644 --- a/lib/internal/timers.js +++ b/lib/internal/timers.js @@ -260,7 +260,7 @@ function ImmediateList() { } // Appends an item to the end of the linked list, adjusting the current tail's -// previous and next pointers where applicable +// next pointer and the item's previous pointer where applicable ImmediateList.prototype.append = function(item) { if (this.tail !== null) { this.tail._idleNext = item;