aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGrant Ammons <grant@pipelinedealsco.com>2017-01-18 07:27:58 -0500
committerGitHub <noreply@github.com>2017-01-18 07:27:58 -0500
commitde346783c83061b2b88e5b158f6a659d569f206e (patch)
tree9b5f9a89b958f5e5ea0820c4290bc38db8dd478f
parent3f952812c67ba7be4dc914946eceb92ae77462a7 (diff)
parentf06d82ed503ff2ce8742413af2f571211f235dfb (diff)
Merge pull request #21 from whoshuu/issue/fix-delete-parse
Fix delete subcommand to match website
-rw-r--r--todo.go2
1 files changed, 1 insertions, 1 deletions
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)