From aed8e547d1b91c607853737960bbf9df4ab6756b Mon Sep 17 00:00:00 2001 From: Grant Ammons Date: Wed, 10 May 2017 20:38:55 -0400 Subject: Remove unnecessary parens --- todolist/app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'todolist') diff --git a/todolist/app.go b/todolist/app.go index eb2f5c2..56787d3 100644 --- a/todolist/app.go +++ b/todolist/app.go @@ -99,7 +99,7 @@ func (a *App) EditTodo(input string) { } parser := &Parser{} - if (parser.ParseEditTodo(todo, input)) { + if parser.ParseEditTodo(todo, input) { a.Save() fmt.Println("Todo updated.") } -- cgit v1.3