Skip to content

Commit

Permalink
Unrolled build for rust-lang#134556
Browse files Browse the repository at this point in the history
Rollup merge of rust-lang#134556 - the8472:restore-ns-units, r=jieyouxu

[tiny] fix missing ns units in bootstrap's benchmark rendering
  • Loading branch information
rust-timer authored Dec 20, 2024
2 parents bad2aa4 + 1abe485 commit f06d357
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bootstrap/src/utils/render_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ impl<'a> Renderer<'a> {
for bench in &self.benches {
rows.push((
&bench.name,
format!("{:.2?}/iter", bench.median),
format!("{:.2?}ns/iter", bench.median),
format!("+/- {:.2?}", bench.deviation),
));
}
Expand Down

0 comments on commit f06d357

Please sign in to comment.