aboutsummaryrefslogtreecommitdiffstats
path: root/todolist/parser.go
diff options
context:
space:
mode:
authorGrant Ammons <gammons@gmail.com>2017-05-10 20:39:55 -0400
committerGrant Ammons <gammons@gmail.com>2017-05-10 20:39:55 -0400
commitf70fd56e6f2144f19150fb0fca2508a5897ab48b (patch)
tree5ba56e64e881cd0e0cdff4037033e5003d570c8c /todolist/parser.go
parentaed8e547d1b91c607853737960bbf9df4ab6756b (diff)
fix typo
Diffstat (limited to 'todolist/parser.go')
-rw-r--r--todolist/parser.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/todolist/parser.go b/todolist/parser.go
index 0d48c92..256e782 100644
--- a/todolist/parser.go
+++ b/todolist/parser.go
@@ -32,7 +32,7 @@ func (p *Parser) ParseEditTodo(todo *Todo, input string) bool {
r := regexp.MustCompile(`(\w+)\s+(\d+)(\s+(.*))?`)
matches := r.FindStringSubmatch(input)
if len(matches) < 3 {
- fmt.Println("Could match command or id")
+ fmt.Println("Could not match command or id")
return false
}