Skip to content

Commit 99a1fec

Browse files
committed
Change "[us]" to "[µs]".
We have the Unicode!
1 parent af0125b commit 99a1fec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

collector/src/runtime/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ fn print_stats(result: &BenchmarkResult) {
131131

132132
print_metric(result, "Instructions", |m| m.instructions);
133133
print_metric(result, "Cycles", |m| m.cycles);
134-
print_metric(result, "Wall time [us]", |m| {
134+
print_metric(result, "Wall time [µs]", |m| {
135135
Some(m.wall_time.as_micros() as u64)
136136
});
137137
print_metric(result, "Branch misses", |m| m.branch_misses);

0 commit comments

Comments
 (0)