Skip to content

Commit b2bb7cc

Browse files
committedFeb 28, 2025
Fix char count in Display for ByteStr
1 parent f45d4ac commit b2bb7cc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎library/core/src/bstr.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,9 @@ impl fmt::Display for ByteStr {
151151
};
152152
let nchars: usize = self
153153
.utf8_chunks()
154-
.map(|chunk| chunk.valid().len() + if chunk.invalid().is_empty() { 0 } else { 1 })
154+
.map(|chunk| {
155+
chunk.valid().chars().count() + if chunk.invalid().is_empty() { 0 } else { 1 }
156+
})
155157
.sum();
156158
let padding = f.width().unwrap_or(0).saturating_sub(nchars);
157159
let fill = f.fill();

0 commit comments

Comments
 (0)