From a41e3ebc3a53050464daa0875c46c0abf461371a 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 PR-URL: https://github.com/nodejs/node/pull/35437 Reviewed-By: Anatoli Papirovski Reviewed-By: Rich Trott --- 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;