Skip to content

Commit 94b1b48

Browse files
authored
Rollup merge of #134556 - the8472:restore-ns-units, r=jieyouxu
[tiny] fix missing ns units in bootstrap's benchmark rendering
2 parents fcc1615 + 1abe485 commit 94b1b48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bootstrap/src/utils/render_tests.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ impl<'a> Renderer<'a> {
242242
for bench in &self.benches {
243243
rows.push((
244244
&bench.name,
245-
format!("{:.2?}/iter", bench.median),
245+
format!("{:.2?}ns/iter", bench.median),
246246
format!("+/- {:.2?}", bench.deviation),
247247
));
248248
}

0 commit comments

Comments
 (0)