Skip to content

Commit 02e5f5c

Browse files
levsthingsMylesBorins
authored andcommitted
process: fix typo in comments
Fixing a typo in comments, the word 'remaining' had a typo. PR-URL: #11503 Fixes: #11491 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Yuta Hiroto <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent edcca78 commit 02e5f5c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/internal/process.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,9 @@ function setup_cpuUsage() {
7373
};
7474
}
7575

76-
76+
// The 3 entries filled in by the original process.hrtime contains
77+
// the upper/lower 32 bits of the second part of the value,
78+
// and the remaining nanoseconds of the value.
7779
function setup_hrtime() {
7880
const _hrtime = process.hrtime;
7981
const hrValues = new Uint32Array(3);

0 commit comments

Comments
 (0)