From e0b69a62b1245e08380dc099ea24a7d7c9edffe0 Mon Sep 17 00:00:00 2001 From: "Dustin J. Mitchell" Date: Mon, 23 Nov 2020 16:18:24 -0500 Subject: [PATCH] fix --help metadata --- cli/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/src/main.rs b/cli/src/main.rs index 1ae6b148e..2d71285bc 100644 --- a/cli/src/main.rs +++ b/cli/src/main.rs @@ -4,10 +4,10 @@ use taskchampion::{taskstorage, Replica, Status}; use uuid::Uuid; fn main() { - let matches = App::new("Rask") + let matches = App::new("TaskChampion") .version("0.1") .author("Dustin J. Mitchell ") - .about("Replacement for TaskWarrior") + .about("Personal task-tracking") .subcommand( SubCommand::with_name("add").about("adds a task").arg( Arg::with_name("description")