aboutsummaryrefslogtreecommitdiffstats
path: root/todolist/app.go
diff options
context:
space:
mode:
authorQuey-Liang Kao <s101062801@m101.nthu.edu.tw>2017-01-17 03:59:15 +0800
committerQuey-Liang Kao <s101062801@m101.nthu.edu.tw>2017-01-17 03:59:15 +0800
commite85b6a5c808ad579e9cc81c57fccccd2498819dc (patch)
tree50101e6df909b5a1f68198e52461f9157f781f5f /todolist/app.go
parentc54a184a24f76eda473f585314716bd567dc14bf (diff)
Provide a more helpful message
Diffstat (limited to 'todolist/app.go')
-rw-r--r--todolist/app.go2
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
}