From f70fd56e6f2144f19150fb0fca2508a5897ab48b Mon Sep 17 00:00:00 2001 From: Grant Ammons Date: Wed, 10 May 2017 20:39:55 -0400 Subject: fix typo --- todolist/parser.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'todolist') 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 } -- cgit v1.3