From 4e1ae0662234bca85837fe136d0ab997b917c835 Mon Sep 17 00:00:00 2001 From: Matan Kushner Date: Mon, 1 Apr 2019 23:30:53 -0400 Subject: [PATCH] Run rustfmt --- src/main.rs | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/main.rs b/src/main.rs index a9ac24a5..17c57862 100644 --- a/src/main.rs +++ b/src/main.rs @@ -4,11 +4,10 @@ use clap::App; fn main() { let matches = App::new("Starship") - .about("The cross-platform prompt for astronauts. ✨🚀") - // pull the version number from Cargo.toml - .version(crate_version!()) - // pull the authors from Cargo.toml - .author(crate_authors!()) - .get_matches(); - + .about("The cross-platform prompt for astronauts. ✨🚀") + // pull the version number from Cargo.toml + .version(crate_version!()) + // pull the authors from Cargo.toml + .author(crate_authors!()) + .get_matches(); }