diff options
| author | Quey-Liang Kao <s101062801@m101.nthu.edu.tw> | 2017-01-17 03:59:15 +0800 |
|---|---|---|
| committer | Quey-Liang Kao <s101062801@m101.nthu.edu.tw> | 2017-01-17 03:59:15 +0800 |
| commit | e85b6a5c808ad579e9cc81c57fccccd2498819dc (patch) | |
| tree | 50101e6df909b5a1f68198e52461f9157f781f5f /todolist/app.go | |
| parent | c54a184a24f76eda473f585314716bd567dc14bf (diff) | |
Provide a more helpful message
Diffstat (limited to 'todolist/app.go')
| -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 } |
