From b01e08f3cbb6f91cf9b96abd9732e5b7dae78b2a Mon Sep 17 00:00:00 2001 From: texasich Date: Wed, 22 Apr 2026 10:37:38 -0500 Subject: [PATCH] address review: simplify comment reference Signed-off-by: texasich --- internal/release/v2/util/manifest.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/release/v2/util/manifest.go b/internal/release/v2/util/manifest.go index 59155aec6..b0b82f907 100644 --- a/internal/release/v2/util/manifest.go +++ b/internal/release/v2/util/manifest.go @@ -61,7 +61,7 @@ var sep = regexp.MustCompile("(?:^|\\s*\n)---[ \\t]*(?:\\r?\\n|$)") // part of the document body and downstream YAML parsing will surface the // problem. Chart authors should drop the dash (`{{ include ... }}`) or omit // the explicit `---` separator — Helm inserts one between templates on its -// own. See helm/helm#32036 and the v2 → v3 migration guide. +// own. See helm/helm#32036. func SplitManifests(bigFile string) map[string]string { // Basically, we're quickly splitting a stream of YAML documents into an // array of YAML docs. The file name is just a place holder, but should be