From c173fc6d863827d25341f96e56dccc5828d5eb23 Mon Sep 17 00:00:00 2001 From: Turner Jabbour Date: Wed, 30 Sep 2020 22:14:31 -0600 Subject: [PATCH] timers: correct explanation in comment --- lib/internal/timers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/internal/timers.js b/lib/internal/timers.js index d48fd9a893389d..d39bab9d074895 100644 --- a/lib/internal/timers.js +++ b/lib/internal/timers.js @@ -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;