From 68d400cd382d93d1132b1ec8641761c8c1cae221 Mon Sep 17 00:00:00 2001 From: Anubhav Mishra Date: Sat, 1 Apr 2017 17:54:50 -0700 Subject: [PATCH] Update comment. --- pkg/releaseutil/manifest.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/releaseutil/manifest.go b/pkg/releaseutil/manifest.go index 9a62efe85..aad1641d7 100644 --- a/pkg/releaseutil/manifest.go +++ b/pkg/releaseutil/manifest.go @@ -35,7 +35,6 @@ var sep = regexp.MustCompile("(?:^|\\s*\n)---\\s*") // SplitManifests takes a string of manifest and returns a map contains individual manifests func SplitManifests(bigfile string) map[string]string { - // This is not the best way of doing things, but it's how k8s itself does it. // Basically, we're quickly splitting a stream of YAML documents into an // array of YAML docs. In the current implementation, the file name is just // a place holder, and doesn't have any further meaning.