From 39a983f6fb1797e1c3b861acd123cdf169ebfe74 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Tue, 19 Dec 2017 19:09:47 +0100 Subject: [PATCH] Add more details to default command --- bin/domain/imag-habit/src/ui.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/domain/imag-habit/src/ui.rs b/bin/domain/imag-habit/src/ui.rs index 37df505f..c0900aa4 100644 --- a/bin/domain/imag-habit/src/ui.rs +++ b/bin/domain/imag-habit/src/ui.rs @@ -22,7 +22,7 @@ use clap::{Arg, App, SubCommand}; pub fn build_ui<'a>(app: App<'a, 'a>) -> App<'a, 'a> { app .subcommand(SubCommand::with_name("status") - .about("Show the current status. Remind of not-yet-done habits, shows upcoming. Default if no command is passed.") + .about("Show the current status. Remind of not-yet-done habits, shows upcoming. Default if no command is passed. Also alias for 'today --future'") .version("0.1") )