From 298245bd1a95b06b71e27ebb0b4a5a97b19084ee Mon Sep 17 00:00:00 2001 From: levsthings Date: Wed, 22 Feb 2017 17:17:42 +0300 Subject: [PATCH] fix typo in comments Fixing a typo in comments, the word 'remaining' had a typo. Fixes: https://github.com/nodejs/node/issues/11491 --- lib/internal/process.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/internal/process.js b/lib/internal/process.js index 47c2c69b3e89f5..f6f8aaa2668e8f 100644 --- a/lib/internal/process.js +++ b/lib/internal/process.js @@ -75,7 +75,7 @@ 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 renamining nanoseconds of the value. +// and the remaining nanoseconds of the value. function setup_hrtime() { const _hrtime = process.hrtime; const hrValues = new Uint32Array(3);