From 7f8f5ccc9a4361b974a023c0c3c922310146abc7 Mon Sep 17 00:00:00 2001 From: rami3l Date: Sun, 1 Aug 2021 11:41:29 +0200 Subject: [PATCH] Revert "fix(style): fix code format warning" This reverts commit a4a4d4c30769e837a186ea26503a182eb49ff2f3. --- src/build/app/mod.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/build/app/mod.rs b/src/build/app/mod.rs index 5ac56422db1..167aa1cfb64 100644 --- a/src/build/app/mod.rs +++ b/src/build/app/mod.rs @@ -2485,7 +2485,8 @@ impl<'help> App<'help> { { debug!("App::_check_help_and_version: Building help subcommand"); self.subcommands.push( - App::new("help").about("Print this message or the help of the given subcommand(s)"), + App::new("help") + .about("Print this message or the help of the given subcommand(s)"), ); } }