From 02e5f5c57ec2cd5c6010e2e5693cd7e54279119e Mon Sep 17 00:00:00 2001 From: levsthings Date: Wed, 22 Feb 2017 17:17:42 +0300 Subject: [PATCH] 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 Reviewed-By: James M Snell Reviewed-By: Yuta Hiroto Reviewed-By: Benjamin Gruenbaum Reviewed-By: Luigi Pinca --- lib/internal/process.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/internal/process.js b/lib/internal/process.js index 8afb89dccac84b..628953e753850c 100644 --- a/lib/internal/process.js +++ b/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);