Skip to content

Commit 09f9e77

Browse files
authored
doc: enhance errcheck description (#3688)
1 parent 6aa4e0f commit 09f9e77

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 for unchecked errors in Go code. "+
39+
"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)