From 41aac465cc52cb922ce58fb2ea002fd2587fbb74 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 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;