diff options
| author | Huu Nguyen <whoshuu@gmail.com> | 2017-01-17 23:54:53 -0800 |
|---|---|---|
| committer | Huu Nguyen <whoshuu@gmail.com> | 2017-01-17 23:54:53 -0800 |
| commit | f06d82ed503ff2ce8742413af2f571211f235dfb (patch) | |
| tree | 5e85d7458c6ee492abcedbe82e0472cebfc26005 | |
| parent | 976e6f28c016752745a0dc3365ccc09ac03daf78 (diff) | |
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) |
