1
0
mirror of https://github.com/nikoksr/notify.git synced 2025-07-13 01:30:32 +02:00

chore(typo): fix minor typo

This commit is contained in:
Niko Köser
2022-02-07 10:24:43 +01:00
parent 80bc1fa47d
commit defb0dc158

View File

@ -5,7 +5,7 @@ import "context"
// Notifier defines the behavior for notification services.
//
// The Send function simply sends a subject and a message string to the internal destination Notifier.
// E.g for telegram.Telegram it sends the message to the specified group chat.
// E.g. for telegram.Telegram it sends the message to the specified group chat.
type Notifier interface {
Send(context.Context, string, string) error
}