Skip to content

Commit c00c31c

Browse files
mscdextargos
authored andcommittedMay 1, 2021
benchmark: improve compare.R output
PR-URL: #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>
1 parent c7c8722 commit c00c31c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎benchmark/compare.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ dat = read.csv(
2323
dat = data.frame(dat);
2424

2525
dat$nameTwoLines = paste0(dat$filename, '\n', dat$configuration);
26-
dat$name = paste0(dat$filename, dat$configuration);
26+
dat$name = paste0(dat$filename, ' ', dat$configuration);
2727

2828
# Create a box plot
2929
if (!is.null(plot.filename)) {

0 commit comments

Comments
 (0)
Please sign in to comment.