Apply uninlined_format-args to clippy_lints

This change is needed for the uninlined_format-args lint to be merged.
See https://github.com/rust-lang/rust-clippy/pull/9233
This commit is contained in:
Yuri Astrakhan 2022-09-23 13:42:59 -04:00
parent ff65eec801
commit e67b2bf732
225 changed files with 557 additions and 842 deletions

View file

@ -65,7 +65,7 @@ fn check_missing_inline_attrs(cx: &LateContext<'_>, attrs: &[ast::Attribute], sp
cx,
MISSING_INLINE_IN_PUBLIC_ITEMS,
sp,
&format!("missing `#[inline]` for {}", desc),
&format!("missing `#[inline]` for {desc}"),
);
}
}