From f06d82ed503ff2ce8742413af2f571211f235dfb Mon Sep 17 00:00:00 2001 From: Huu Nguyen Date: Tue, 17 Jan 2017 23:54:53 -0800 Subject: Fix delete subcommand to match website --- todo.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/todo.go b/todo.go index 2b95c98..36e5bf7 100644 --- a/todo.go +++ b/todo.go @@ -111,7 +111,7 @@ func routeInput(command string, input string) { app.ListTodos(input) case "a", "add": app.AddTodo(input) - case "d", "del": + case "d", "delete": app.DeleteTodo(input) case "c", "complete": app.CompleteTodo(input) -- cgit v1.3