Skip to content

Commit

Permalink
fixes #14
Browse files Browse the repository at this point in the history
  • Loading branch information
marvin-j97 authored Jan 5, 2025
1 parent 63e9d4e commit 2ee59b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gc/report.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ impl std::fmt::Display for GcReport {
writeln!(f, "Stale bytes: {}", self.stale_bytes)?;
writeln!(f, "Total blobs: {}", self.total_blobs)?;
writeln!(f, "Stale blobs: {}", self.stale_blobs)?;
writeln!(f, "Stale % : {}", self.stale_ratio())?;
writeln!(f, "Stale ratio: {}", self.stale_ratio())?;
writeln!(f, "Space amp : {}", self.space_amp())?;
writeln!(f, "--- GC report done ---")?;
Ok(())
Expand Down

0 comments on commit 2ee59b8

Please sign in to comment.