From 96b9c5ab2bdefa68ce676d5e525636f92d8f3870 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Va=C5=A1ko?= Date: Wed, 18 Dec 2024 12:25:00 +0100 Subject: [PATCH] fix: Linter issue --- internal/pkg/template/manifest/manifest.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/pkg/template/manifest/manifest.go b/internal/pkg/template/manifest/manifest.go index 41251c2601..c1a4dd4550 100644 --- a/internal/pkg/template/manifest/manifest.go +++ b/internal/pkg/template/manifest/manifest.go @@ -76,7 +76,7 @@ func (f *File) Evaluate(ctx context.Context, jsonnetCtx *jsonnet.Context) (*Mani return m, nil } -// EvaluateWithoutRecords is used for empty manifests to load context information into `Manifest` structure +// EvaluateWithoutRecords is used for empty manifests to load context information into `Manifest` structure. func (f *File) EvaluateWithoutRecords(ctx context.Context, jsonnetCtx *jsonnet.Context) (m *Manifest, err error) { // Evaluate Jsonnet content, err := evaluateFile(ctx, f.file, jsonnetCtx)