Merge pull request #1473 from mattcollier/patch-2
Correct typo in code comment.
This commit is contained in:
commit
809103f4b2
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ import (
|
||||||
var singleton *HealthCheck
|
var singleton *HealthCheck
|
||||||
var once sync.Once
|
var once sync.Once
|
||||||
|
|
||||||
// GetHealthCheck Get HealtchCheck Singleton
|
// GetHealthCheck returns the health check which is guaranteed to be a singleton.
|
||||||
func GetHealthCheck() *HealthCheck {
|
func GetHealthCheck() *HealthCheck {
|
||||||
once.Do(func() {
|
once.Do(func() {
|
||||||
singleton = newHealthCheck()
|
singleton = newHealthCheck()
|
||||||
|
|
Loading…
Reference in a new issue