diff --git a/plugin/events.go b/plugin/events.go index d204340aa7..ee27b86a57 100644 --- a/plugin/events.go +++ b/plugin/events.go @@ -44,7 +44,7 @@ func (e EventCreate) matches(observed Event) bool { } // EventRemove is an event which is emitted when a plugin is removed -// It maches on the passed in plugin's ID only. +// It matches on the passed in plugin's ID only. type EventRemove struct { Plugin types.Plugin } @@ -58,7 +58,7 @@ func (e EventRemove) matches(observed Event) bool { } // EventDisable is an event that is emitted when a plugin is disabled -// It maches on the passed in plugin's ID only. +// It matches on the passed in plugin's ID only. type EventDisable struct { Plugin types.Plugin } @@ -72,7 +72,7 @@ func (e EventDisable) matches(observed Event) bool { } // EventEnable is an event that is emitted when a plugin is disabled -// It maches on the passed in plugin's ID only. +// It matches on the passed in plugin's ID only. type EventEnable struct { Plugin types.Plugin }