summaryrefslogtreecommitdiff
path: root/doc/guides
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2019-06-20 13:27:15 -0600
committerRich Trott <rtrott@gmail.com>2019-06-23 07:07:17 -0700
commit68cfa56d0ce98888a3d5cec949442ed485e63fd1 (patch)
treee7be52a91974a669e1460305b0217fecbc1de999 /doc/guides
parentca276253fbc1f3b54b8fe3043a994722b065350c (diff)
downloadandroid-node-v8-68cfa56d0ce98888a3d5cec949442ed485e63fd1.tar.gz
android-node-v8-68cfa56d0ce98888a3d5cec949442ed485e63fd1.tar.bz2
android-node-v8-68cfa56d0ce98888a3d5cec949442ed485e63fd1.zip
doc: remove "note that" from writing-and-running-benchmarks.md
Refs: https://github.com/nodejs/remark-preset-lint-node/pull/16 PR-URL: https://github.com/nodejs/node/pull/28329 Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Diffstat (limited to 'doc/guides')
-rw-r--r--doc/guides/writing-and-running-benchmarks.md4
1 files changed, 2 insertions, 2 deletions
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) {