From fea743b783543b1978c401c6f16f501765b9d8d0 Mon Sep 17 00:00:00 2001 From: hwdef Date: Tue, 8 Oct 2019 13:10:14 +0800 Subject: [PATCH] cmd: fix spelling mistake --- cmd/kubeadm/app/util/config/common.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/kubeadm/app/util/config/common.go b/cmd/kubeadm/app/util/config/common.go index 7a0650ea37c..40fb9184da3 100644 --- a/cmd/kubeadm/app/util/config/common.go +++ b/cmd/kubeadm/app/util/config/common.go @@ -138,7 +138,7 @@ func VerifyAPIServerBindAddress(address string) error { } // ChooseAPIServerBindAddress is a wrapper for netutil.ChooseBindAddress that also handles -// the case where no default routes were found and an IP for the API server could not be obatained. +// the case where no default routes were found and an IP for the API server could not be obtained. func ChooseAPIServerBindAddress(bindAddress net.IP) (net.IP, error) { ip, err := netutil.ChooseBindAddress(bindAddress) if err != nil {