From 7307f9e7a21399dbfb28892690a02a2f2f607220 Mon Sep 17 00:00:00 2001 From: timchenxiaoyu <837829664@qq.com> Date: Wed, 1 Mar 2017 12:31:11 +0800 Subject: [PATCH] fix amount typo --- pkg/controller/controller_utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/controller/controller_utils.go b/pkg/controller/controller_utils.go index 1bf2848ba8c..1ae029c1aa7 100644 --- a/pkg/controller/controller_utils.go +++ b/pkg/controller/controller_utils.go @@ -876,7 +876,7 @@ func AddOrUpdateTaintOnNode(c clientset.Interface, nodeName string, taint *v1.Ta // If passed a node it'll check if there's anything to be done, if taint is not present it won't issue // any API calls. func RemoveTaintOffNode(c clientset.Interface, nodeName string, taint *v1.Taint, node *v1.Node) error { - // Short circuit for limiting amout of API calls. + // Short circuit for limiting amount of API calls. if node != nil { match := false for i := range node.Spec.Taints {