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:
parent
6de67cfc36
commit
be51f9aa5b
3 changed files with 12 additions and 12 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue