Skip to content

Commit e4ebf82

Browse files
committed
docs: Clarify govet description
1 parent d751398 commit e4ebf82

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pkg/golinters/govet.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,8 @@ func NewGovet(settings *config.GovetSettings) *goanalysis.Linter {
143143
return goanalysis.NewLinter(
144144
"govet",
145145
"Vet examines Go source code and reports suspicious constructs, "+
146-
"such as Printf calls whose arguments do not align with the format string",
146+
"such as Printf calls whose arguments do not align with the format string. "+
147+
"This is the same analysis as the 'go vet' tool",
147148
analyzersFromConfig(settings),
148149
conf,
149150
).WithLoadMode(goanalysis.LoadModeTypesInfo)

0 commit comments

Comments
 (0)