diff options
| -rw-r--r-- | todolist/app.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/todolist/app.go b/todolist/app.go index 7644d46..45b9812 100644 --- a/todolist/app.go +++ b/todolist/app.go @@ -26,7 +26,7 @@ func (a *App) AddTodo(input string) { parser := &Parser{} todo := parser.ParseNewTodo(input) if todo == nil { - fmt.Println("What to do?") + fmt.Println("I need more information. Try something like 'todo a chat with @bob due tom'") return } |
