Browse Source

process: fix typo in comments

Fixing a typo in comments, the word 'remaining' had a typo.

PR-URL: https://github.com/nodejs/node/pull/11503
Fixes: https://github.com/nodejs/node/issues/11491
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
v6.x
levsthings 8 years ago
committed by Myles Borins
parent
commit
02e5f5c57e
No known key found for this signature in database GPG Key ID: 933B01F40B5CA946
  1. 4
      lib/internal/process.js

4
lib/internal/process.js

@ -73,7 +73,9 @@ function setup_cpuUsage() {
};
}
// The 3 entries filled in by the original process.hrtime contains
// the upper/lower 32 bits of the second part of the value,
// and the remaining nanoseconds of the value.
function setup_hrtime() {
const _hrtime = process.hrtime;
const hrValues = new Uint32Array(3);

Loading…
Cancel
Save