From 95a296f161d7ca29a38f4c24ef2f1b09383a7193 Mon Sep 17 00:00:00 2001 From: Scott Andrews Date: Fri, 29 Mar 2024 10:03:34 -0400 Subject: [PATCH] Update reconcilers/advice.go Co-authored-by: Max Brauer Signed-off-by: Scott Andrews --- reconcilers/advice.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reconcilers/advice.go b/reconcilers/advice.go index 68f2f32..ba005c0 100644 --- a/reconcilers/advice.go +++ b/reconcilers/advice.go @@ -51,7 +51,7 @@ type AdviceReconciler[Type client.Object] struct { // Before is called preceding Around. A modified context may be returned. Errors are returned // immediately. // - // If Before is not defined, there is no affect. + // If Before is not defined, there is no effect. // // +optional Before func(ctx context.Context, resource Type) (context.Context, Result, error)