We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad334b0 commit 14bc5a6Copy full SHA for 14bc5a6
pkg/golinters/errcheck.go
@@ -35,8 +35,8 @@ func NewErrcheck(settings *config.ErrcheckSettings) *goanalysis.Linter {
35
36
return goanalysis.NewLinter(
37
errcheckName,
38
- "Errcheck is a program for checking for unchecked errors "+
39
- "in go programs. These unchecked errors can be critical bugs in some cases",
+ "Errcheck is a program for checking unhandled errors "+
+ "in Go code. These unchecked errors can be critical bugs in some cases",
40
[]*analysis.Analyzer{analyzer},
41
nil,
42
).WithContextSetter(func(lintCtx *linter.Context) {
0 commit comments