From 709f55b39569f74352d67d722726e73bda7e8935 Mon Sep 17 00:00:00 2001 From: sbfnk-bot <242615673+sbfnk-bot@users.noreply.github.com> Date: Mon, 11 May 2026 09:19:52 +0000 Subject: [PATCH] Fix benchmark comparison table rendering cat() defaults to joining with a single space, so knitr::kable() output was emitted as one line. Use sep = "\n" so each table row stays on its own line. Co-authored-by: sbfnk --- inst/dev/benchmark-compare.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inst/dev/benchmark-compare.R b/inst/dev/benchmark-compare.R index dfc6f4bb2..8b6242ac4 100644 --- a/inst/dev/benchmark-compare.R +++ b/inst/dev/benchmark-compare.R @@ -145,7 +145,7 @@ if (any(changes$trend != "no change")) { cat(knitr::kable( format_output, align = "lrrrrr", caption = "Benchmarking results (mean time in seconds)." - )) + ), sep = "\n") cat("\n") if (length(output_lines) > 0) { cat(paste(output_lines, collapse = "\n"))