Skip to content

Commit 14bc5a6

Browse files
committed
doc: enhance errcheck description
1 parent ad334b0 commit 14bc5a6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/golinters/errcheck.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ func NewErrcheck(settings *config.ErrcheckSettings) *goanalysis.Linter {
3535

3636
return goanalysis.NewLinter(
3737
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",
38+
"Errcheck is a program for checking unhandled errors "+
39+
"in Go code. These unchecked errors can be critical bugs in some cases",
4040
[]*analysis.Analyzer{analyzer},
4141
nil,
4242
).WithContextSetter(func(lintCtx *linter.Context) {

0 commit comments

Comments
 (0)