diff options
| author | Grant Ammons <grant@pipelinedealsco.com> | 2017-01-18 07:27:58 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-01-18 07:27:58 -0500 |
| commit | de346783c83061b2b88e5b158f6a659d569f206e (patch) | |
| tree | 9b5f9a89b958f5e5ea0820c4290bc38db8dd478f | |
| parent | 3f952812c67ba7be4dc914946eceb92ae77462a7 (diff) | |
| parent | f06d82ed503ff2ce8742413af2f571211f235dfb (diff) | |
Merge pull request #21 from whoshuu/issue/fix-delete-parse
Fix delete subcommand to match website
| -rw-r--r-- | todo.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |
