From e0d749f9524c7d3e09efc15d70705a10fb975f65 Mon Sep 17 00:00:00 2001 From: Yuki Yugui Sonoda Date: Fri, 18 Jul 2014 14:13:55 +0900 Subject: [PATCH] fix typo --- pkg/health/health_check.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/health/health_check.go b/pkg/health/health_check.go index ba97f8efcae..8820b92c5fd 100644 --- a/pkg/health/health_check.go +++ b/pkg/health/health_check.go @@ -48,7 +48,7 @@ type MuxHealthChecker struct { // HealthCheck delegates the health-checking of the container to one of the bundled implementations. // It chooses an implementation according to container.LivenessProbe.Type. -// If there is no matching healthc checker it returns Unknown, nil. +// If there is no matching health checker it returns Unknown, nil. func (m *MuxHealthChecker) HealthCheck(container api.Container) (Status, error) { checker, ok := m.checkers[container.LivenessProbe.Type] if !ok || checker == nil {