From 8659251cf1c9b7c8abfee99dcc14da64690693b1 Mon Sep 17 00:00:00 2001 From: feiyudev Date: Mon, 18 Sep 2023 20:54:58 +0800 Subject: [PATCH] docs: fix a grammer mistake in comment --- pkg/handler/eventhandler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/handler/eventhandler.go b/pkg/handler/eventhandler.go index 2f380f4fc4..ff2f3e80b2 100644 --- a/pkg/handler/eventhandler.go +++ b/pkg/handler/eventhandler.go @@ -42,7 +42,7 @@ import ( // Unless you are implementing your own EventHandler, you can ignore the functions on the EventHandler interface. // Most users shouldn't need to implement their own EventHandler. type EventHandler interface { - // Create is called in response to an create event - e.g. Pod Creation. + // Create is called in response to a create event - e.g. Pod Creation. Create(context.Context, event.CreateEvent, workqueue.RateLimitingInterface) // Update is called in response to an update event - e.g. Pod Updated.