summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorMatan Kushner <hello@matchai.me>2019-04-01 23:30:53 -0400
committerMatan Kushner <hello@matchai.me>2019-04-01 23:30:53 -0400
commit4e1ae0662234bca85837fe136d0ab997b917c835 (patch)
tree586e224aa10117215b00a26ecb2f012fd5eb72d9 /src/main.rs
parent106bcb73bcfe1c3887795a6fa2b106c665df3d56 (diff)
Run rustfmt
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/main.rs b/src/main.rs
index a9ac24a5a..17c57862d 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();
}