Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Fleischer <github@benjaminfleischer.com>2017-02-06 04:18:46 +0300
committerAnna Henningsen <anna@addaleax.net>2017-03-06 01:25:21 +0300
commitf56ca30bf05d558b6475ae800e096c69ce4ec04a (patch)
tree34b93d18423b182dcfeccc3dea09e3043bbdf5d0 /benchmark
parentf972bd81c677782c0439b63cafa436f91eeffd78 (diff)
benchmark,build,doc,lib,src,test: correct typos
PR-URL: https://github.com/nodejs/node/pull/11189 Reviewed-By: Brian White <mscdex@mscdex.net> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Diffstat (limited to 'benchmark')
-rw-r--r--benchmark/compare.R2
-rw-r--r--benchmark/compare.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/benchmark/compare.R b/benchmark/compare.R
index 3f37cad74ad..5085f4ea73b 100644
--- a/benchmark/compare.R
+++ b/benchmark/compare.R
@@ -47,7 +47,7 @@ statistics = ddply(dat, "name", function(subdat) {
p.value = NA;
confidence = 'NA';
- # Check if there is enough data to calulate the calculate the p-value
+ # Check if there is enough data to calculate the calculate the p-value
if (length(old.rate) > 1 && length(new.rate) > 1) {
# Perform a statistics test to see of there actually is a difference in
# performance.
diff --git a/benchmark/compare.js b/benchmark/compare.js
index af36d1c4239..a671bc9f3d7 100644
--- a/benchmark/compare.js
+++ b/benchmark/compare.js
@@ -9,7 +9,7 @@ const BenchmarkProgress = require('./_benchmark_progress.js');
// Parse arguments
//
const cli = CLI(`usage: ./node compare.js [options] [--] <category> ...
- Run each benchmark in the <category> directory many times using two diffrent
+ Run each benchmark in the <category> directory many times using two different
node versions. More than one <category> directory can be specified.
The output is formatted as csv, which can be processed using for
example 'compare.R'.