diff options
| author | Grant Ammons <gammons@gmail.com> | 2017-05-10 20:39:55 -0400 |
|---|---|---|
| committer | Grant Ammons <gammons@gmail.com> | 2017-05-10 20:39:55 -0400 |
| commit | f70fd56e6f2144f19150fb0fca2508a5897ab48b (patch) | |
| tree | 5ba56e64e881cd0e0cdff4037033e5003d570c8c | |
| parent | aed8e547d1b91c607853737960bbf9df4ab6756b (diff) | |
fix typo
| -rw-r--r-- | todolist/parser.go | 2 |
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 } |
