aboutsummaryrefslogtreecommitdiffstats
path: root/todolist
diff options
context:
space:
mode:
authorGrant Ammons <gammons@gmail.com>2017-05-10 20:38:55 -0400
committerGrant Ammons <gammons@gmail.com>2017-05-10 20:38:55 -0400
commitaed8e547d1b91c607853737960bbf9df4ab6756b (patch)
treee5403194ffef77ab4a559d35a3cfc0f13c24a943 /todolist
parentd86bc4ea3f85bab91be80792c423b2a96aa6d626 (diff)
Remove unnecessary parens
Diffstat (limited to 'todolist')
-rw-r--r--todolist/app.go2
1 files changed, 1 insertions, 1 deletions
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.")
}