diff --git a/internal/plugin/runtime_subprocess.go b/internal/plugin/runtime_subprocess.go index 5e6676a00..802732b14 100644 --- a/internal/plugin/runtime_subprocess.go +++ b/internal/plugin/runtime_subprocess.go @@ -29,7 +29,7 @@ import ( "helm.sh/helm/v4/internal/plugin/schema" ) -// SubprocessProtocolCommand maps a given protocol to the getter command used to retrieve artifacts for that protcol +// SubprocessProtocolCommand maps a given protocol to the getter command used to retrieve artifacts for that protocol type SubprocessProtocolCommand struct { // Protocols are the list of schemes from the charts URL. Protocols []string `yaml:"protocols"` diff --git a/pkg/kube/client.go b/pkg/kube/client.go index 26ba7abfc..ef2a72463 100644 --- a/pkg/kube/client.go +++ b/pkg/kube/client.go @@ -1031,7 +1031,7 @@ func patchResourceClientSide(original runtime.Object, target *resource.Info, thr } // upgradeClientSideFieldManager is simply a wrapper around csaupgrade.UpgradeManagedFields -// that ugrade CSA managed fields to SSA apply +// that upgrade CSA managed fields to SSA apply // see: https://github.com/kubernetes/kubernetes/pull/112905 func upgradeClientSideFieldManager(info *resource.Info, dryRun bool, fieldValidationDirective FieldValidationDirective) (bool, error) { diff --git a/pkg/kube/client_test.go b/pkg/kube/client_test.go index a8a8668c7..cd59f950c 100644 --- a/pkg/kube/client_test.go +++ b/pkg/kube/client_test.go @@ -142,7 +142,7 @@ func NewRequestResponseLogClient(t *testing.T, cb RoundTripperTestFunc) RequestR } // RequestResponseLogClient is a test client that logs requests and responses -// Satifying http.RoundTripper interface, it can be used to mock HTTP requests in tests. +// Satisfying http.RoundTripper interface, it can be used to mock HTTP requests in tests. // Forwarding requests to a callback function (cb) that can be used to simulate server responses. type RequestResponseLogClient struct { t *testing.T