Skip to content

Commit 5bb80b5

Browse files
committed
refactor(bench): remove excess whitespace in benchmark progress output
Removed newline prefix from each benchmark status line. This eliminates blank lines between benchmarks. Before: Benchmarking 'Split all' ... ✓ Benchmarking 'Split last index' ... ✓ Benchmarking 'Join' ... ✓ After: Benchmarking 'Split all' ... ✓ Benchmarking 'Split last index' ... ✓ Benchmarking 'Join' ... ✓
1 parent d82da9b commit 5bb80b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/bench_throughput.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -823,7 +823,7 @@ fn main() {
823823
let mut all_results = Vec::new();
824824

825825
for (template_name, template_str) in &templates {
826-
print!("\nBenchmarking '{}' ... ", template_name);
826+
print!("Benchmarking '{}' ... ", template_name);
827827
std::io::Write::flush(&mut std::io::stdout()).unwrap();
828828

829829
match benchmark_template(template_name, template_str, &sizes, iterations, detailed) {

0 commit comments

Comments
 (0)