Skip to content

Commit

Permalink
Fix redundant parameter type declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
kinbiko committed May 11, 2019
1 parent a1fa878 commit 97d8eb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strings"
)

func (a *Asserter) pathassertf(path string, act, exp string) {
func (a *Asserter) pathassertf(path, act, exp string) {
if act == exp {
return
}
Expand Down

0 comments on commit 97d8eb4

Please sign in to comment.