From c75026c318d8ee6131e11232bb975a05a1df2a3f Mon Sep 17 00:00:00 2001 From: George Jenkins Date: Thu, 9 Oct 2025 10:27:06 -0700 Subject: [PATCH] doc string Signed-off-by: George Jenkins --- pkg/kube/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/kube/client.go b/pkg/kube/client.go index a1030a316..d0944afdb 100644 --- a/pkg/kube/client.go +++ b/pkg/kube/client.go @@ -772,7 +772,7 @@ func (c *Client) Update(originals, targets ResourceList, options ...ClientUpdate } // Delete deletes Kubernetes resources specified in the resources list with -// background cascade deletion. It will attempt to delete all resources even +// given deletion propagation policy. It will attempt to delete all resources even // if one or more fail and collect any errors. All successfully deleted items // will be returned in the `Deleted` ResourceList that is part of the result. func (c *Client) Delete(resources ResourceList, policy metav1.DeletionPropagation) (*Result, []error) {