Fix a typo

Thanks to Bourgond_Aries for the report!
This commit is contained in:
Peltoche 2018-12-04 17:24:41 +01:00
parent 97b44ff0b5
commit 5b75642e66
No known key found for this signature in database
GPG key ID: CED68D0487156952
2 changed files with 2 additions and 2 deletions

2
Cargo.lock generated
View file

@ -47,7 +47,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]] [[package]]
name = "lsd" name = "lsd"
version = "0.6.0" version = "0.6.1-pre"
dependencies = [ dependencies = [
"ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
"clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)",

View file

@ -29,7 +29,7 @@ pub struct Options {
fn main() { fn main() {
let matches = App::new("lsd") let matches = App::new("lsd")
.about("A ls comment with a lot of pretty colors and some other stuff.") .about("An ls comment with a lot of pretty colors and some other stuff.")
.arg(Arg::with_name("FILE").multiple(true).default_value(".")) .arg(Arg::with_name("FILE").multiple(true).default_value("."))
.arg(Arg::with_name("all").short("a").long("all")) .arg(Arg::with_name("all").short("a").long("all"))
.arg(Arg::with_name("long").short("l").long("long")) .arg(Arg::with_name("long").short("l").long("long"))