Skip to content

Commit

Permalink
Fixes the name in the code
Browse files Browse the repository at this point in the history
  • Loading branch information
xcambar committed Oct 17, 2017
1 parent 30d1cd1 commit 8ccb020
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "pure-prompt"
name = "purs"
version = "0.1.0"
authors = ["Xavier Cambar <xcambar@gmail.com>"]

Expand All @@ -8,4 +8,4 @@ authors = ["Xavier Cambar <xcambar@gmail.com>"]
ansi_term = "0.9"
git2 = "0.6"
regex = "0.2"
clap = "2.26.1"
clap = "2.26.1"
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ mod prompt;
mod precmd;

fn main() {
let matches = App::new("Pure prompt")
let matches = App::new("Purs")
.setting(AppSettings::SubcommandRequired)
.subcommand(precmd::cli_arguments())
.subcommand(prompt::cli_arguments())
Expand All @@ -20,4 +20,4 @@ fn main() {
("prompt", Some(sub_matches)) => prompt::display(sub_matches),
_ => (),
}
}
}

0 comments on commit 8ccb020

Please sign in to comment.