Skip to content

Commit ad334b0

Browse files
authored
doc: replace golang with Go in descriptions for gci, thelper, goerr113 (#3651)
1 parent 49ce80a commit ad334b0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pkg/golinters/gci.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ func NewGci(settings *config.GciSettings) *goanalysis.Linter {
5757

5858
return goanalysis.NewLinter(
5959
gciName,
60-
"Gci controls golang package import order and makes it always deterministic.",
60+
"Gci controls Go package import order and makes it always deterministic.",
6161
[]*analysis.Analyzer{analyzer},
6262
nil,
6363
).WithContextSetter(func(lintCtx *linter.Context) {

pkg/golinters/goerr113.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
func NewGoerr113() *goanalysis.Linter {
1111
return goanalysis.NewLinter(
1212
"goerr113",
13-
"Golang linter to check the errors handling expressions",
13+
"Go linter to check the errors handling expressions",
1414
[]*analysis.Analyzer{err113.NewAnalyzer()},
1515
nil,
1616
).WithLoadMode(goanalysis.LoadModeTypesInfo)

pkg/golinters/thelper.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ func NewThelper(cfg *config.ThelperSettings) *goanalysis.Linter {
5555

5656
return goanalysis.NewLinter(
5757
"thelper",
58-
"thelper detects golang test helpers without t.Helper() call and checks the consistency of test helpers",
58+
"thelper detects Go test helpers without t.Helper() call and checks the consistency of test helpers",
5959
[]*analysis.Analyzer{a},
6060
cfgMap,
6161
).WithLoadMode(goanalysis.LoadModeTypesInfo)

0 commit comments

Comments
 (0)