1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-09-02 19:32:25 +01:00

Fix clippy warnings with Rust 1.68

This commit is contained in:
Martin Nordholts
2023-03-14 21:19:14 +01:00
parent c5602f9766
commit 40a423905a
4 changed files with 6 additions and 6 deletions

View File

@@ -20,7 +20,7 @@ pub fn expand_tabs(line: &str, width: usize, cursor: &mut usize) -> String {
// Add tab.
let spaces = width - (*cursor % width);
*cursor += spaces;
buffer.push_str(&*" ".repeat(spaces));
buffer.push_str(&" ".repeat(spaces));
// Next.
text = &text[index + 1..text.len()];