From ad336e57cf30eab387e3881c9dadafcfe559523d Mon Sep 17 00:00:00 2001 From: Shijun Qin Date: Tue, 31 Oct 2017 20:03:56 +0800 Subject: [PATCH] fix a grammatical problem in a comment --- cmd/kubeadm/app/features/features.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/kubeadm/app/features/features.go b/cmd/kubeadm/app/features/features.go index 422c9dd78f5..f484105e621 100644 --- a/cmd/kubeadm/app/features/features.go +++ b/cmd/kubeadm/app/features/features.go @@ -115,7 +115,7 @@ func KnownFeatures(f *FeatureList) []string { return known } -// NewFeatureGate parse a string of the form "key1=value1,key2=value2,..." into a +// NewFeatureGate parses a string of the form "key1=value1,key2=value2,..." into a // map[string]bool of known keys or returns an error. func NewFeatureGate(f *FeatureList, value string) (map[string]bool, error) { featureGate := map[string]bool{}