Skip to content

Commit d3aa593

Browse files
committed
Remove redundant s in output
1 parent 6a0d37b commit d3aa593

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc/util/profiling.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ impl CategoryData {
9292
($name:tt, $rustic_name:ident) => {
9393
let (hits, total) = self.query_counts.$rustic_name;
9494
let (hits, total) = if total > 0 {
95-
(format!("{:.2}%", (((hits as f32) / (total as f32)) * 100.0)), total.to_string())
95+
(format!("{:.2}", (((hits as f32) / (total as f32)) * 100.0)), total.to_string())
9696
} else {
9797
("".into(), "".into())
9898
};

0 commit comments

Comments
 (0)