Skip to content

Commit

Permalink
fix issue reported by gofmt -s
Browse files Browse the repository at this point in the history
  • Loading branch information
Lynn Lin authored and Lynn Lin committed Aug 29, 2017
1 parent 7cf257f commit 3e0a5d8
Show file tree
Hide file tree
Showing 2 changed files with 97 additions and 97 deletions.
2 changes: 1 addition & 1 deletion purell.go
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ func sortQuery(u *url.URL) {
if len(q) > 0 {
arKeys := make([]string, len(q))
i := 0
for k, _ := range q {
for k := range q {
arKeys[i] = k
i++
}
Expand Down
Loading

0 comments on commit 3e0a5d8

Please sign in to comment.