From 798d2fb75aa6188b4e8275a849aed55406d6ad5b Mon Sep 17 00:00:00 2001 From: Antonio Ojea Date: Fri, 29 Nov 2019 07:35:22 +0100 Subject: [PATCH] Fix comment typo --- cmd/kubeadm/app/phases/controlplane/manifests.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/kubeadm/app/phases/controlplane/manifests.go b/cmd/kubeadm/app/phases/controlplane/manifests.go index 643fd847705..7afe84a5290 100644 --- a/cmd/kubeadm/app/phases/controlplane/manifests.go +++ b/cmd/kubeadm/app/phases/controlplane/manifests.go @@ -175,7 +175,7 @@ func getAPIServerCommand(cfg *kubeadmapi.ClusterConfiguration, localAPIEndpoint } } - // TODO: The following code should be remvoved after dual-stack is GA. + // TODO: The following code should be removed after dual-stack is GA. // Note: The user still retains the ability to explicitly set feature-gates and that value will overwrite this base value. if enabled, present := cfg.FeatureGates[features.IPv6DualStack]; present { defaultArguments["feature-gates"] = fmt.Sprintf("%s=%t", features.IPv6DualStack, enabled)