summaryrefslogtreecommitdiffstats
path: root/imag-todo
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2016-07-15 21:06:11 +0200
committerMatthias Beyer <mail@beyermatthias.de>2016-07-21 17:14:12 +0200
commit3af6712d8bb8688a81224c1a705ff75954c5ad7e (patch)
tree802b5dab1938d31fca5197659c08c29f8c9bb958 /imag-todo
parent8e4471cc07385d3dcbb210cbf4733f3584d087b8 (diff)
Fix indentation in ui definition
Diffstat (limited to 'imag-todo')
-rw-r--r--imag-todo/src/ui.rs22
1 files 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")
+ )
+ )
}