mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 13:48:44 +02:00
benchmark,doc,lib,test: capitalize comments
This updates a lot of comments. PR-URL: https://github.com/nodejs/node/pull/26223 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
This commit is contained in:
parent
7b674697d8
commit
9edce1e12a
200 changed files with 346 additions and 347 deletions
|
@ -234,7 +234,7 @@ function insert(item, refed, start) {
|
|||
|
||||
function TimersList(expiry, msecs) {
|
||||
this._idleNext = this; // Create the list with the linkedlist properties to
|
||||
this._idlePrev = this; // prevent any unnecessary hidden class changes.
|
||||
this._idlePrev = this; // Prevent any unnecessary hidden class changes.
|
||||
this.expiry = expiry;
|
||||
this.id = timerListId++;
|
||||
this.msecs = msecs;
|
||||
|
@ -410,7 +410,7 @@ exports.unenroll = util.deprecate(unenroll,
|
|||
function enroll(item, msecs) {
|
||||
msecs = validateTimerDuration(msecs, 'msecs');
|
||||
|
||||
// if this item was already in a list somewhere
|
||||
// If this item was already in a list somewhere
|
||||
// then we should unenroll it from that
|
||||
if (item._idleNext) unenroll(item);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue