Skip to content

Commit df14311

Browse files
committed
fmt
1 parent 225ebff commit df14311

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

clippy_lints/src/format_args.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,8 +316,10 @@ fn check_uninlined_args(
316316
diag.multipart_suggestion("change this to", fixes, Applicability::MachineApplicable);
317317
if ignore_mixed {
318318
// 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");
319+
diag.note_once(
320+
"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+
);
321323
}
322324
},
323325
);

0 commit comments

Comments
 (0)