Skip to content

Commit 3c06707

Browse files
alexandearSeigeC
authored andcommitted
doc: enhance errcheck description (golangci#3688)
1 parent d1cd9a0 commit 3c06707

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)