Skip to content

Commit 2af7c6b

Browse files
wjabbourBethGriggs
authored andcommitted
timers: correct explanation in comment
PR-URL: #35437 Reviewed-By: Anatoli Papirovski <[email protected]> Reviewed-By: Rich Trott <[email protected]>
1 parent b2a3daf commit 2af7c6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/internal/timers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ function ImmediateList() {
260260
}
261261

262262
// Appends an item to the end of the linked list, adjusting the current tail's
263-
// previous and next pointers where applicable
263+
// next pointer and the item's previous pointer where applicable
264264
ImmediateList.prototype.append = function(item) {
265265
if (this.tail !== null) {
266266
this.tail._idleNext = item;

0 commit comments

Comments
 (0)