Skip to content

Commit

Permalink
Merge pull request #244 from agoalofalife/patch-2
Browse files Browse the repository at this point in the history
Redundant parentheses
  • Loading branch information
chris-ramon authored Sep 14, 2017
2 parents ed4c4d8 + 5136982 commit 4b17eb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ type Result struct {
}

func (r *Result) HasErrors() bool {
return (len(r.Errors) > 0)
return len(r.Errors) > 0
}

0 comments on commit 4b17eb6

Please sign in to comment.