We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 225ebff commit df14311Copy full SHA for df14311
clippy_lints/src/format_args.rs
@@ -316,8 +316,10 @@ fn check_uninlined_args(
316
diag.multipart_suggestion("change this to", fixes, Applicability::MachineApplicable);
317
if ignore_mixed {
318
// Improve lint config discoverability
319
- diag.note_once("this lint can also fix mixed format arg inlining if \
320
- `allow-mixed-uninlined-format-args = false` is set in the `clippy.toml` file");
+ diag.note_once(
+ "this lint can also fix mixed format arg inlining if \
321
+ `allow-mixed-uninlined-format-args = false` is set in the `clippy.toml` file",
322
+ );
323
}
324
},
325
);
0 commit comments