Rollup merge of #134556 - the8472:restore-ns-units, r=jieyouxu
[tiny] fix missing ns units in bootstrap's benchmark rendering
This commit is contained in:
commit
94b1b48eee
1 changed files with 1 additions and 1 deletions
|
|
@ -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),
|
||||
));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue