1
0
mirror of https://github.com/nikoksr/notify.git synced 2024-11-28 08:39:13 +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
No known key found for this signature in database
GPG Key ID: F3F28C118DAA6375

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
}