From 9b4a8f746449aabc1b9083d7987fec55a89464f2 Mon Sep 17 00:00:00 2001 From: Vishnu kannan Date: Mon, 27 Feb 2017 15:32:41 -0800 Subject: [PATCH] fix eviction helper function description Signed-off-by: Vishnu kannan --- pkg/kubelet/eviction/helpers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/kubelet/eviction/helpers.go b/pkg/kubelet/eviction/helpers.go index 26b4fbbc940..86059a23da2 100644 --- a/pkg/kubelet/eviction/helpers.go +++ b/pkg/kubelet/eviction/helpers.go @@ -845,7 +845,7 @@ func hasThreshold(inputs []evictionapi.Threshold, item evictionapi.Threshold) bo return false } -// compareevictionapi.ThresholdValue returns true if the two thresholdValue objects are logically the same +// compareThresholdValue returns true if the two thresholdValue objects are logically the same func compareThresholdValue(a evictionapi.ThresholdValue, b evictionapi.ThresholdValue) bool { if a.Quantity != nil { if b.Quantity == nil {