Skip to content

Commit 1590819

Browse files
committed
fix: TEXT_MAX_LEN
1 parent aa6ac6a commit 1590819

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/reporter/progress_report.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ impl<Size: size::Size + Into<u64>> ProgressReport<Size> {
1919
/// performance penalty from string resizing.
2020
///
2121
/// The value of this function is made correct by a unit test.
22-
const TEXT_MAX_LEN: usize = 145;
22+
const TEXT_MAX_LEN: usize = 87;
2323

2424
/// Create a text to be used in [`Self::TEXT`].
2525
fn text(self) -> String {

0 commit comments

Comments
 (0)