From 53da32c63a067b2a2f12e947e4442a683438f86f Mon Sep 17 00:00:00 2001 From: Mitya_Eremeev Date: Sun, 21 Dec 2025 20:42:32 +0300 Subject: [PATCH] Update event-filtering.md --- .../building-operators/golang/references/event-filtering.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/content/en/docs/building-operators/golang/references/event-filtering.md b/website/content/en/docs/building-operators/golang/references/event-filtering.md index f1c6992bec2..27c672c724b 100644 --- a/website/content/en/docs/building-operators/golang/references/event-filtering.md +++ b/website/content/en/docs/building-operators/golang/references/event-filtering.md @@ -73,7 +73,7 @@ func ignoreDeletionPredicate() predicate.Predicate { }, DeleteFunc: func(e event.DeleteEvent) bool { // Evaluates to false if the object has been confirmed deleted. - return !e.DeleteStateUnknown + return e.DeleteStateUnknown }, } }