From 4ffb7c09cf853bfb5834ce3d8c9989bfda2f68f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niko=20K=C3=B6ser?= Date: Wed, 10 Feb 2021 14:49:25 +0100 Subject: [PATCH] chore(comment): add punctuation to function comment --- notify.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notify.go b/notify.go index 489e357..692524a 100644 --- a/notify.go +++ b/notify.go @@ -18,7 +18,7 @@ type Notify struct { // ErrSendNotification signals that the notifier failed to send a notification. var ErrSendNotification = errors.New("send notification") -// New returns a new instance of Notify. Defaulting to being not disabled +// New returns a new instance of Notify. Defaulting to being not disabled. func New() *Notify { notifier := &Notify{ Disabled: defaultDisabled,