chore: cargo fmt fix

This commit is contained in:
rvcas 2023-02-20 15:17:25 -05:00 committed by Lucas
parent bd93ced647
commit 94ffc36442
1 changed files with 2 additions and 2 deletions

View File

@ -785,7 +785,7 @@ The best thing to do from here is to remove it."#))]
if missing > 1 { if missing > 1 {
arguments.push('s'); arguments.push('s');
} }
format!("please add the {} missing {arguments}", missing.to_string().yellow()) format!("please add the {} missing {arguments}", missing.to_string().yellow())
} else { } else {
let extra = count - 3; let extra = count - 3;
@ -795,7 +795,7 @@ The best thing to do from here is to remove it."#))]
if extra > 1 { if extra > 1 {
arguments.push('s'); arguments.push('s');
} }
format!("please remove the {} extra {arguments}", extra.to_string().yellow()) format!("please remove the {} extra {arguments}", extra.to_string().yellow())
} }
))] ))]