Merge pull request #13400 from wangjingcun/main

chore: fix some function names in comment
This commit is contained in:
George Jenkins
2024-10-24 21:34:19 -07:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -73,7 +73,7 @@ func WithPlainHTTP(plainHTTP bool) PushOpt {
}
}
// WithOptWriter sets the registryOut field on the push configuration object.
// WithPushOptWriter sets the registryOut field on the push configuration object.
func WithPushOptWriter(out io.Writer) PushOpt {
return func(p *Push) {
p.out = out

View File

@@ -18,7 +18,7 @@ package chartutil
import "testing"
// TestValidateName is a regression test for ValidateName
// TestValidateReleaseName is a regression test for ValidateName
//
// Kubernetes has strict naming conventions for resource names. This test represents
// those conventions.