Skip to content

Commit 6981d11

Browse files
committedNov 29, 2023
Fix typo in Reconciler interface comment
1 parent 2154ffb commit 6981d11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎pkg/reconcile/reconcile.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ type Reconciler interface {
9797
// If the error is nil and the returned Result has a non-zero result.RequeueAfter, the request
9898
// will be requeued after the specified duration.
9999
//
100-
// If the error is nil and result.RequeueAfter is zero and result.Reque is true, the request
100+
// If the error is nil and result.RequeueAfter is zero and result.Requeue is true, the request
101101
// will be requeued using exponential backoff.
102102
Reconcile(context.Context, Request) (Result, error)
103103
}

0 commit comments

Comments
 (0)
Please sign in to comment.