Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
rsmarples committed Jul 17, 2023
1 parent 4b9e5f1 commit 80fd296
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -885,7 +885,7 @@ func (parser *Parser) matchTags(comments []*ast.Comment) (match bool) {

if !match {
// If all tags are negation then we should return true
for key, _ := range parser.tags {
for key := range parser.tags {
if key[0] != '!' {
return false
}
Expand Down

0 comments on commit 80fd296

Please sign in to comment.