From 68cfa56d0ce98888a3d5cec949442ed485e63fd1 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Thu, 20 Jun 2019 13:27:15 -0600 Subject: doc: remove "note that" from writing-and-running-benchmarks.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Refs: https://github.com/nodejs/remark-preset-lint-node/pull/16 PR-URL: https://github.com/nodejs/node/pull/28329 Reviewed-By: Gus Caplan Reviewed-By: Trivikram Kamat Reviewed-By: Tobias Nießen Reviewed-By: Ruben Bridgewater --- doc/guides/writing-and-running-benchmarks.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/guides') diff --git a/doc/guides/writing-and-running-benchmarks.md b/doc/guides/writing-and-running-benchmarks.md index e6ccf163d3..6097830aee 100644 --- a/doc/guides/writing-and-running-benchmarks.md +++ b/doc/guides/writing-and-running-benchmarks.md @@ -352,7 +352,7 @@ The arguments of `createBenchmark` are: * `configs` {Object} The benchmark parameters. `createBenchmark` will run all possible combinations of these parameters, unless specified otherwise. Each configuration is a property with an array of possible values. - Note that the configuration values can only be strings or numbers. + The configuration values can only be strings or numbers. * `options` {Object} The benchmark options. At the moment only the `flags` option for specifying command line flags is supported. @@ -400,7 +400,7 @@ const options = { // `main` and `configs` are required, `options` is optional. const bench = common.createBenchmark(main, configs, options); -// Note that any code outside main will be run twice, +// Any code outside main will be run twice, // in different processes, with different command line arguments. function main(conf) { -- cgit v1.2.3