From 3af6712d8bb8688a81224c1a705ff75954c5ad7e Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Fri, 15 Jul 2016 21:06:11 +0200 Subject: [PATCH] Fix indentation in ui definition --- imag-todo/src/ui.rs | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/imag-todo/src/ui.rs b/imag-todo/src/ui.rs index 7ec89d39..f781673e 100644 --- a/imag-todo/src/ui.rs +++ b/imag-todo/src/ui.rs @@ -27,16 +27,16 @@ pub fn build_ui<'a>(app: App<'a, 'a>) -> App<'a, 'a> { .required(true)) ) - .subcommand(SubCommand::with_name("list") - .about("List all tasks") - .version("0.1") + .subcommand(SubCommand::with_name("list") + .about("List all tasks") + .version("0.1") - .arg(Arg::with_name("verbose") - .long("verbose") - .short("v") - .takes_value(false) - .required(false) - .help("Asks taskwarrior for all the details") - ) - ) + .arg(Arg::with_name("verbose") + .long("verbose") + .short("v") + .takes_value(false) + .required(false) + .help("Asks taskwarrior for all the details") + ) + ) }