From a88c1fbb43a7945d4804721080dadae715a24630 Mon Sep 17 00:00:00 2001 From: Steven Edwards Date: Sun, 13 Jan 2019 05:59:28 -0500 Subject: [PATCH] s/start/create/ for create command. --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 939caf5..971e7d5 100644 --- a/main.go +++ b/main.go @@ -156,7 +156,7 @@ func main() { app.Version("v version", Version) app.Command("start s", "start a new task", start(path)) app.Command("init", "initialize the sqlite database", initialize(path)) - app.Command("create c", "create a new task without starting", start(path)) + app.Command("create c", "create a new task without starting", create(path)) app.Command("list l", "list historical tasks", list(path)) app.Command("delete d", "delete a stored task", _delete(path)) app.Command("status st", "output the current status", _status(path))