We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63e9d4e commit 2ee59b8Copy full SHA for 2ee59b8
src/gc/report.rs
@@ -40,7 +40,7 @@ impl std::fmt::Display for GcReport {
40
writeln!(f, "Stale bytes: {}", self.stale_bytes)?;
41
writeln!(f, "Total blobs: {}", self.total_blobs)?;
42
writeln!(f, "Stale blobs: {}", self.stale_blobs)?;
43
- writeln!(f, "Stale % : {}", self.stale_ratio())?;
+ writeln!(f, "Stale ratio: {}", self.stale_ratio())?;
44
writeln!(f, "Space amp : {}", self.space_amp())?;
45
writeln!(f, "--- GC report done ---")?;
46
Ok(())
0 commit comments