diff --git a/Cargo.toml b/Cargo.toml index 96e6d7f..6e2d23a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ authors = ["Peltoche "] build = "build.rs" categories = ["command-line-utilities"] -description = "A ls command with a lot of pretty colors." +description = "An ls command with a lot of pretty colors and some other stuff." keywords = ["ls"] license = "Apache-2.0" name = "lsd" diff --git a/src/app.rs b/src/app.rs index 60aa18c..1c3a6f5 100644 --- a/src/app.rs +++ b/src/app.rs @@ -3,7 +3,7 @@ use clap::{App, Arg}; pub fn build() -> App<'static, 'static> { App::new("lsd") .version(crate_version!()) - .about("An ls comment with a lot of pretty colors and some other stuff.") + .about(crate_description!()) .arg(Arg::with_name("FILE").multiple(true).default_value(".")) .arg( Arg::with_name("all")