From dd98766b32704adb5d9ce2bac52ecdcac73b5932 Mon Sep 17 00:00:00 2001 From: Matt Bostock Date: Wed, 21 Sep 2016 21:59:25 +0100 Subject: [PATCH] cmd/prometheus/main.go: Fix typo in comment --- cmd/prometheus/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/prometheus/main.go b/cmd/prometheus/main.go index fc967b474..363ffe44b 100644 --- a/cmd/prometheus/main.go +++ b/cmd/prometheus/main.go @@ -202,7 +202,7 @@ func Main() int { prometheus.MustRegister(configSuccess) prometheus.MustRegister(configSuccessTime) - // The notifieris a dependency of the rule manager. It has to be + // The notifier is a dependency of the rule manager. It has to be // started before and torn down afterwards. go notifier.Run() defer notifier.Stop()