1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 03:27:44 +00:00

fix: clippy long literal lacking separators

This commit is contained in:
leon3s 2023-03-19 15:01:59 +01:00
parent 6de67cfc36
commit be51f9aa5b
3 changed files with 12 additions and 12 deletions

View file

@ -130,7 +130,7 @@ mod linux_only {
}
fn run_tee(proc: &mut UCommand) -> (String, Output) {
let content = (1..=100000).map(|x| format!("{x}\n")).collect::<String>();
let content = (1..=100_000).map(|x| format!("{x}\n")).collect::<String>();
#[allow(deprecated)]
let output = proc