From cffa1d325c7c5a0d9e28f0419d05cf0afe1d3504 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Sun, 11 Jul 2021 14:27:07 +0200 Subject: [PATCH] fmt cargo-miri --- cargo-miri/bin.rs | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/cargo-miri/bin.rs b/cargo-miri/bin.rs index 1a7552c5d9e..23546988daa 100644 --- a/cargo-miri/bin.rs +++ b/cargo-miri/bin.rs @@ -528,9 +528,10 @@ fn phase_cargo_miri(mut args: env::Args) { Some("run") => MiriCommand::Run, Some("setup") => MiriCommand::Setup, // Invalid command. - _ => show_error(format!( - "`cargo miri` supports the following subcommands: `run`, `test`, and `setup`." - )), + _ => + show_error(format!( + "`cargo miri` supports the following subcommands: `run`, `test`, and `setup`." + )), }; let verbose = has_arg_flag("-v"); @@ -1086,8 +1087,9 @@ fn main() { )); } } - _ => show_error(format!( - "`cargo-miri` called without first argument; please only invoke this binary through `cargo miri`" - )), + _ => + show_error(format!( + "`cargo-miri` called without first argument; please only invoke this binary through `cargo miri`" + )), } }