plugin: fix typos in GoDoc

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn
2024-07-02 15:42:37 +02:00
parent a43ed47441
commit 80822715cd

View File

@@ -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
}