File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -528,9 +528,10 @@ fn phase_cargo_miri(mut args: env::Args) {
528
528
Some ( "run" ) => MiriCommand :: Run ,
529
529
Some ( "setup" ) => MiriCommand :: Setup ,
530
530
// Invalid command.
531
- _ => show_error ( format ! (
532
- "`cargo miri` supports the following subcommands: `run`, `test`, and `setup`."
533
- ) ) ,
531
+ _ =>
532
+ show_error ( format ! (
533
+ "`cargo miri` supports the following subcommands: `run`, `test`, and `setup`."
534
+ ) ) ,
534
535
} ;
535
536
let verbose = has_arg_flag ( "-v" ) ;
536
537
@@ -1086,8 +1087,9 @@ fn main() {
1086
1087
) ) ;
1087
1088
}
1088
1089
}
1089
- _ => show_error ( format ! (
1090
- "`cargo-miri` called without first argument; please only invoke this binary through `cargo miri`"
1091
- ) ) ,
1090
+ _ =>
1091
+ show_error ( format ! (
1092
+ "`cargo-miri` called without first argument; please only invoke this binary through `cargo miri`"
1093
+ ) ) ,
1092
1094
}
1093
1095
}
You can’t perform that action at this time.
0 commit comments