We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dc49f88 + 5cb3d52 commit 570fdf2Copy full SHA for 570fdf2
crates/rust-analyzer/src/cli/analysis_stats.rs
@@ -295,7 +295,7 @@ pub fn analysis_stats(
295
eprintln!("Total: {}", total_span);
296
report_metric("total time", total_span.time.as_millis() as u64, "ms");
297
if let Some(instructions) = total_span.instructions {
298
- report_metric("total time", instructions, "#instr");
+ report_metric("total instructions", instructions, "#instr");
299
}
300
if let Some(memory) = total_span.memory {
301
report_metric("total memory", memory.allocated.megabytes() as u64, "MB");
0 commit comments