Skip to content

Commit

Permalink
Reword interface{} as any
Browse files Browse the repository at this point in the history
Should be fine since the module requires Go 1.21

Signed-off-by: Eric Chlebek <[email protected]>
  • Loading branch information
echlebek authored and dominikh committed May 20, 2024
1 parent d82d387 commit dcae280
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion add-check.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ var SCAnalyzer = lint.InitializeAnalyzer(&lint.Analyzer{
var Analyzer = SCAnalyzer.Analyzer
func run(pass *analysis.Pass) (interface{}, error) {
func run(pass *analysis.Pass) (any, error) {
return nil, nil
}
`
Expand Down

0 comments on commit dcae280

Please sign in to comment.