1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 03:27: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

@ -68,7 +68,7 @@ fn du_basics(s: &str) {
assert_eq!(s, answer);
}
#[cfg(all(not(target_vendor = "apple"), not(target_os = "windows"),))]
#[cfg(all(not(target_vendor = "apple"), not(target_os = "windows")))]
fn du_basics(s: &str) {
let answer = concat!(
"8\t./subdir/deeper/deeper_dir\n",