File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ func NewGci(settings *config.GciSettings) *goanalysis.Linter {
57
57
58
58
return goanalysis .NewLinter (
59
59
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." ,
61
61
[]* analysis.Analyzer {analyzer },
62
62
nil ,
63
63
).WithContextSetter (func (lintCtx * linter.Context ) {
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import (
10
10
func NewGoerr113 () * goanalysis.Linter {
11
11
return goanalysis .NewLinter (
12
12
"goerr113" ,
13
- "Golang linter to check the errors handling expressions" ,
13
+ "Go linter to check the errors handling expressions" ,
14
14
[]* analysis.Analyzer {err113 .NewAnalyzer ()},
15
15
nil ,
16
16
).WithLoadMode (goanalysis .LoadModeTypesInfo )
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ func NewThelper(cfg *config.ThelperSettings) *goanalysis.Linter {
55
55
56
56
return goanalysis .NewLinter (
57
57
"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" ,
59
59
[]* analysis.Analyzer {a },
60
60
cfgMap ,
61
61
).WithLoadMode (goanalysis .LoadModeTypesInfo )
You can’t perform that action at this time.
0 commit comments