aboutsummaryrefslogtreecommitdiffstats
path: root/todolist
diff options
context:
space:
mode:
Diffstat (limited to 'todolist')
-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
}