From 3ede77cdf53bbd109adcf1940718bb0c5d899e52 Mon Sep 17 00:00:00 2001 From: Volodymyr Patuta <90917-fiplox@users.noreply.framagit.org> Date: Sat, 12 Dec 2020 17:47:10 +0100 Subject: [PATCH] dots --- src/rnote/app.rs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/rnote/app.rs b/src/rnote/app.rs index da15f8f..32aaccd 100644 --- a/src/rnote/app.rs +++ b/src/rnote/app.rs @@ -45,7 +45,7 @@ pub fn make_app() -> App<'static, 'static> { SubCommand::with_name("list") .alias("l") .alias("ls") - .about("List all notes or notes from a category") + .about("List all notes or notes from a category.") .arg( Arg::with_name("category") .help("List all notes from a category.") @@ -68,6 +68,7 @@ pub fn make_app() -> App<'static, 'static> { ) .subcommand( SubCommand::with_name("show") + .about("Show note(s) in TextView.") .arg( Arg::with_name("all") .help("Show all notes.") @@ -77,12 +78,12 @@ pub fn make_app() -> App<'static, 'static> { ) .arg( Arg::with_name("category") - .help("Show all notes from a category/date") + .help("Show all notes from a category/date.") .short("c") .long("category") .conflicts_with("header"), ) .arg(Arg::with_name("header").help("Name of the note.")), ) - .subcommand(SubCommand::with_name("panic").help("Delete all notes.")) + .subcommand(SubCommand::with_name("panic").about("Delete all notes.")) }