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 BethGriggs committed Dec 15, 2020
1 parent 4dc5e4a commit 41aac46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/internal/timers.js
Expand Up @@ -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;
Expand Down

0 comments on commit 41aac46

Please sign in to comment.