Skip to content

Commit

Permalink
timers: correct explanation in comment
Browse files Browse the repository at this point in the history
PR-URL: #35437
Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
  • Loading branch information
wjabbour authored and targos committed Nov 3, 2020
1 parent f6aa7c8 commit a41e3eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/internal/timers.js
Expand Up @@ -261,7 +261,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;
Expand Down

0 comments on commit a41e3eb

Please sign in to comment.