From 0fdf33aaaa7b87d4fff8a1bcc8ac023292e9e9da Mon Sep 17 00:00:00 2001 From: Olli Raula Date: Tue, 2 Jan 2024 17:12:47 +0200 Subject: [PATCH] docs: fix noctx description (#4297) Co-authored-by: Fernandez Ludovic --- pkg/golinters/noctx.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/golinters/noctx.go b/pkg/golinters/noctx.go index 3695dbd9187f..cff9c97dcf28 100644 --- a/pkg/golinters/noctx.go +++ b/pkg/golinters/noctx.go @@ -12,7 +12,7 @@ func NewNoctx() *goanalysis.Linter { return goanalysis.NewLinter( a.Name, - "Detects test helpers which is not start with t.Helper() method", + "Finds sending http request without context.Context", []*analysis.Analyzer{a}, nil, ).WithLoadMode(goanalysis.LoadModeTypesInfo)