This commit is contained in:
2026-07-25 20:32:37 -04:00
parent 6f41034b3d
commit f9b35d1247
+1 -1
View File
@@ -67,7 +67,7 @@ impl FrequencyVec {
let col1 = self.longest_word().max(5);
let col2 = digits.max(5);
let col3 = 10;
let end = col1 + col2 + col3.max(11) + 2;
let end = col1 + col2 + col3.max(11) + 1;
println!("{:<col1$} {:<col2$} {:<col3$}", "Word", "Count", "%_of_total");
println!("{:-<end$}", "");
for (w, c) in self.0.iter() {