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:
authorBrian White <mscdex@mscdex.net>2021-04-07 01:27:03 +0300
committerJames M Snell <jasnell@gmail.com>2021-04-13 00:28:46 +0300
commit0180fc5b9bbe281e9f2322fc732fd0986b1e49bf (patch)
treef1c2e22152a71fd348773d2dd03ab49e456a2462 /benchmark
parent896dc39951b0a130d41b8be36cd96aa21bb36b13 (diff)
benchmark: improve compare.R output
PR-URL: https://github.com/nodejs/node/pull/38118 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Diffstat (limited to 'benchmark')
-rw-r--r--benchmark/compare.R2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/compare.R b/benchmark/compare.R
index bd851e9876a..21e35b7e8f1 100644
--- a/benchmark/compare.R
+++ b/benchmark/compare.R
@@ -23,7 +23,7 @@ dat = read.csv(
dat = data.frame(dat);
dat$nameTwoLines = paste0(dat$filename, '\n', dat$configuration);
-dat$name = paste0(dat$filename, dat$configuration);
+dat$name = paste0(dat$filename, ' ', dat$configuration);
# Create a box plot
if (!is.null(plot.filename)) {