Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTurner Jabbour <doubleujabbour@gmail.com>2020-10-01 07:14:31 +0300
committerGireesh Punathil <gpunathi@in.ibm.com>2020-10-25 14:56:10 +0300
commit20a6ddc968ee81c88a20cf470d8dc71f24c81d95 (patch)
treeb68d3bba4d81f2138c07d4dd3817d983b70cc139
parentfc3f41b561b243caca83013e41ff0f4c9eb4fb0a (diff)
timers: correct explanation in comment
PR-URL: https://github.com/nodejs/node/pull/35437 Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
-rw-r--r--lib/internal/timers.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/internal/timers.js b/lib/internal/timers.js
index d48fd9a8933..d39bab9d074 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;