From cc782046de647cb1f8dded3aef974e7254bd59b5 Mon Sep 17 00:00:00 2001 From: silverwind Date: Thu, 15 Feb 2024 21:51:40 +0100 Subject: [PATCH] docs: improve `govet` description (#4366) Co-authored-by: Fernandez Ludovic --- pkg/golinters/govet.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/golinters/govet.go b/pkg/golinters/govet.go index a0d33835..e2c7d2df 100644 --- a/pkg/golinters/govet.go +++ b/pkg/golinters/govet.go @@ -144,8 +144,8 @@ func NewGovet(settings *config.GovetSettings) *goanalysis.Linter { return goanalysis.NewLinter( "govet", - "Vet examines Go source code and reports suspicious constructs, "+ - "such as Printf calls whose arguments do not align with the format string", + "Vet examines Go source code and reports suspicious constructs. "+ + "It is roughly the same as 'go vet' and uses its passes.", analyzersFromConfig(settings), conf, ).WithLoadMode(goanalysis.LoadModeTypesInfo)