From 051e18f6e39a898d4c8331c69d1b66ede50fac37 Mon Sep 17 00:00:00 2001 From: Ilya Kiselev Date: Sat, 21 Mar 2026 00:26:26 +0300 Subject: [PATCH] fix comment: 'when need' -> 'when you need' Signed-off-by: Ilya Kiselev --- pkg/engine/funcs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/engine/funcs.go b/pkg/engine/funcs.go index 0615284e9..13cf10f7e 100644 --- a/pkg/engine/funcs.go +++ b/pkg/engine/funcs.go @@ -167,7 +167,7 @@ func toTOML(v any) string { // mustToTOML takes an interface, marshals it to toml, and returns a string. // It will panic if there is an error. // -// This is designed to be called from a template when need to ensure that the +// This is designed to be called from a template when you need to ensure that the // output TOML is valid. func mustToTOML(v any) string { b := bytes.NewBuffer(nil)