Skip to content

Commit 2ee59b8

Browse files
authored
fixes #14
1 parent 63e9d4e commit 2ee59b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gc/report.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ impl std::fmt::Display for GcReport {
4040
writeln!(f, "Stale bytes: {}", self.stale_bytes)?;
4141
writeln!(f, "Total blobs: {}", self.total_blobs)?;
4242
writeln!(f, "Stale blobs: {}", self.stale_blobs)?;
43-
writeln!(f, "Stale % : {}", self.stale_ratio())?;
43+
writeln!(f, "Stale ratio: {}", self.stale_ratio())?;
4444
writeln!(f, "Space amp : {}", self.space_amp())?;
4545
writeln!(f, "--- GC report done ---")?;
4646
Ok(())

0 commit comments

Comments
 (0)