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

chore: cleanup trailing commas before parens

Deleted commas in cases like `foo,)` -- mostly in macros
This commit is contained in:
Yuri Astrakhan 2025-04-08 00:33:58 -04:00
parent b7bf8c9467
commit 3dc771924c
17 changed files with 86 additions and 86 deletions

View file

@ -41,7 +41,7 @@ fn execution_phrase_double() {
assert!(
String::from_utf8(output.stderr)
.unwrap()
.contains(&format!("Usage: {} ls", scenario.bin_path.display(),))
.contains(&format!("Usage: {} ls", scenario.bin_path.display()))
);
}