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
committerDanielle Adams <adamzdanielle@gmail.com>2021-05-08 19:44:40 +0300
commit668c2105f95d9a35e276cca19b924f62f5ec25b1 (patch)
treea6af7a0e447d48b20aae8fd42fbddf3774c1e7e7 /benchmark
parentb1830b560719c89aebcb34727d75f9edf580fb14 (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)) {