From 6981d11f647edd6141e615cbe87e101b7c9e20a8 Mon Sep 17 00:00:00 2001 From: Abhishek Bose Date: Wed, 29 Nov 2023 00:17:02 +0000 Subject: [PATCH] Fix typo in Reconciler interface comment --- pkg/reconcile/reconcile.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/reconcile/reconcile.go b/pkg/reconcile/reconcile.go index 0f4e7e16bb..c00cb139bd 100644 --- a/pkg/reconcile/reconcile.go +++ b/pkg/reconcile/reconcile.go @@ -97,7 +97,7 @@ type Reconciler interface { // If the error is nil and the returned Result has a non-zero result.RequeueAfter, the request // will be requeued after the specified duration. // - // If the error is nil and result.RequeueAfter is zero and result.Reque is true, the request + // If the error is nil and result.RequeueAfter is zero and result.Requeue is true, the request // will be requeued using exponential backoff. Reconcile(context.Context, Request) (Result, error) }