From 650fbb83ecb69f5da0948e9e12e15d23ff9d71a3 Mon Sep 17 00:00:00 2001 From: vilm3r Date: Wed, 31 Aug 2022 11:01:27 -0500 Subject: [PATCH] fix: test notification typo (#677) --- internal/grpc/notif.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/grpc/notif.go b/internal/grpc/notif.go index cf0a3eb6..b6918e80 100644 --- a/internal/grpc/notif.go +++ b/internal/grpc/notif.go @@ -67,6 +67,6 @@ func (c *Client) NotifTest(ctx context.Context, request *pb.NotifTestRequest) (* } return &pb.NotifTestResponse{ - Message: fmt.Sprintf("Notifcation sent for %s notifier(s)", strings.Join(sent, ", ")), + Message: fmt.Sprintf("Notification sent for %s notifier(s)", strings.Join(sent, ", ")), }, nil }