From f01f7d5aafc2149541a91ea83d64faf6c0c7177b Mon Sep 17 00:00:00 2001 From: Hans Rakers Date: Thu, 15 Aug 2024 09:10:40 +0200 Subject: [PATCH] chore: fix incorrect function name in comment --- controllers/utils/base_reconciler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/utils/base_reconciler.go b/controllers/utils/base_reconciler.go index b469559e..4d604b24 100644 --- a/controllers/utils/base_reconciler.go +++ b/controllers/utils/base_reconciler.go @@ -251,7 +251,7 @@ func (r *ReconciliationRunner) CheckOwnedCRDsForReadiness(gvks ...schema.GroupVe } } -// CheckOwnedObjectsDeleted queries for the presence of owned objects and requeues if any are still present. Primarily +// DeleteOwnedObjects queries for the presence of owned objects and requeues if any are still present. Primarily // used to prevent deletions of owners before dependents. func (r *ReconciliationRunner) DeleteOwnedObjects(gvks ...schema.GroupVersionKind) CloudStackReconcilerMethod { return func() (ctrl.Result, error) {