Skip to content

Commit fa09324

Browse files
authored
Rollup merge of #71512 - Rustin-Liu:rustin-patch-bootstrap, r=Mark-Simulacrum
Remove useless "" args Signed-off-by: Rustin-Liu <[email protected]>
2 parents 16d2db5 + a62a8b0 commit fa09324

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/bootstrap/toolstate.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -93,12 +93,12 @@ static NIGHTLY_TOOLS: &[(&str, &str)] = &[
9393
];
9494

9595
fn print_error(tool: &str, submodule: &str) {
96-
eprintln!("");
96+
eprintln!();
9797
eprintln!("We detected that this PR updated '{}', but its tests failed.", tool);
98-
eprintln!("");
98+
eprintln!();
9999
eprintln!("If you do intend to update '{}', please check the error messages above and", tool);
100100
eprintln!("commit another update.");
101-
eprintln!("");
101+
eprintln!();
102102
eprintln!("If you do NOT intend to update '{}', please ensure you did not accidentally", tool);
103103
eprintln!("change the submodule at '{}'. You may ask your reviewer for the", submodule);
104104
eprintln!("proper steps.");

0 commit comments

Comments
 (0)