From b50ea4834f5b4ecd8028b9609a97d7835260c314 Mon Sep 17 00:00:00 2001 From: Lv Jiawei Date: Fri, 4 Jan 2019 18:57:17 +0800 Subject: [PATCH] Fix typo in comment (#5061) I think it is a typo in comment of Alert.ResolvedAt . Signed-off-by: MIBc --- notifier/notifier.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notifier/notifier.go b/notifier/notifier.go index dbf5996cf..447f25c36 100644 --- a/notifier/notifier.go +++ b/notifier/notifier.go @@ -93,7 +93,7 @@ func (a *Alert) Resolved() bool { return a.ResolvedAt(time.Now()) } -// ResolvedAt returns true off the activity interval ended before +// ResolvedAt returns true iff the activity interval ended before // the given timestamp. func (a *Alert) ResolvedAt(ts time.Time) bool { if a.EndsAt.IsZero() {