Skip to content

Commit

Permalink
golint
Browse files Browse the repository at this point in the history
  • Loading branch information
tdewolff committed Nov 2, 2015
1 parent 24ae234 commit ede45cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion html/html.go
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ func Minify(m minify.Minifier, _ string, w io.Writer, r io.Reader) error {

func getAttributes(attrTokenBuffer *[]*Token, tb *TokenBuffer, hashes ...html.Hash) {
*attrTokenBuffer = (*attrTokenBuffer)[:len(hashes)]
for j, _ := range *attrTokenBuffer {
for j := range *attrTokenBuffer {
(*attrTokenBuffer)[j] = nil
}
for i := 0; ; i++ {
Expand Down

0 comments on commit ede45cc

Please # to comment.