Skip to content

Commit

Permalink
refactor: change quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
sashamelentyev committed Sep 18, 2022
1 parent 1a270cf commit 63a9d66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/analyzer/analyzer.go
Original file line number Diff line number Diff line change
Expand Up @@ -518,5 +518,5 @@ func getBasicLitValue(basicLit *ast.BasicLit) string {
}

func report(pass *analysis.Pass, pos token.Pos, currentVal, newVal string) {
pass.Reportf(pos, `%q can be replaced by %s`, currentVal, newVal)
pass.Reportf(pos, "%q can be replaced by %s", currentVal, newVal)
}

0 comments on commit 63a9d66

Please sign in to comment.