From c5a0dcedd3eb0c4b1d8cead36a0a7d735d6f3f3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20Rodr=C3=ADguez=20Baquero?= Date: Fri, 3 Feb 2017 22:50:48 -0500 Subject: [PATCH] doc: fix math error in process.md Updates benchmark result output to actual real result. 1 * 1e9 + 552 = 1000000552 not 1000000527 PR-URL: https://github.com/nodejs/node/pull/11158 Reviewed-By: Anna Henningsen --- doc/api/process.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/process.md b/doc/api/process.md index fea9f1f0a3a76d..6968c3da50e390 100644 --- a/doc/api/process.md +++ b/doc/api/process.md @@ -1052,7 +1052,7 @@ setTimeout(() => { // [ 1, 552 ] console.log(`Benchmark took ${diff[0] * NS_PER_SEC + diff[1]} nanoseconds`); - // benchmark took 1000000527 nanoseconds + // benchmark took 1000000552 nanoseconds }, 1000); ```