1
Fork 0

clippy::useless_format

This commit is contained in:
Matthias Krüger 2021-07-21 22:43:19 +02:00
parent d0a8a12dc6
commit 3fd8cbb404
14 changed files with 17 additions and 17 deletions

View file

@ -855,7 +855,7 @@ impl CheckAttrVisitor<'tcx> {
hir_id,
meta.span(),
|lint| {
lint.build(&format!("invalid `doc` attribute")).emit();
lint.build(&"invalid `doc` attribute").emit();
},
);
is_valid = false;