From 5b75642e66f0680337bbf59eb6b152e433b49a1b Mon Sep 17 00:00:00 2001 From: Peltoche Date: Tue, 4 Dec 2018 17:24:41 +0100 Subject: [PATCH] Fix a typo Thanks to Bourgond_Aries for the report! --- Cargo.lock | 2 +- src/main.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bdeecf7..b2a107d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -47,7 +47,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "lsd" -version = "0.6.0" +version = "0.6.1-pre" dependencies = [ "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)", diff --git a/src/main.rs b/src/main.rs index 42a72ef..154fac7 100644 --- a/src/main.rs +++ b/src/main.rs @@ -29,7 +29,7 @@ pub struct Options { fn main() { 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("all").short("a").long("all")) .arg(Arg::with_name("long").short("l").long("long"))