From b7c2e2d3f1661a2b8e3547c52a7a97c88529a29e Mon Sep 17 00:00:00 2001 From: mattcollier Date: Thu, 20 Apr 2017 12:51:06 -0400 Subject: [PATCH] Correct typo and use Godoc convention in comment. --- healthcheck/healthcheck.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/healthcheck/healthcheck.go b/healthcheck/healthcheck.go index 316e75ca6..edc0a8bae 100644 --- a/healthcheck/healthcheck.go +++ b/healthcheck/healthcheck.go @@ -15,7 +15,7 @@ import ( var singleton *HealthCheck var once sync.Once -// GetHealthCheck Get HealtchCheck Singleton +// GetHealthCheck returns the health check which is guaranteed to be a singleton. func GetHealthCheck() *HealthCheck { once.Do(func() { singleton = newHealthCheck()