From c28cf37c1f34851b3a465ab598bc7188c4dc502e Mon Sep 17 00:00:00 2001 From: Alan Date: Wed, 2 Jan 2019 17:07:13 +0800 Subject: [PATCH] fix typo: if -> it fix typo: if -> it --- cmd/kubeadm/app/cmd/completion.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/kubeadm/app/cmd/completion.go b/cmd/kubeadm/app/cmd/completion.go index 2fae2b34326..43d27abf851 100644 --- a/cmd/kubeadm/app/cmd/completion.go +++ b/cmd/kubeadm/app/cmd/completion.go @@ -73,7 +73,7 @@ var ( # Load the kubeadm completion code for bash into the current shell source <(kubeadm completion bash) - # Write bash completion code to a file and source if from .bash_profile + # Write bash completion code to a file and source it from .bash_profile kubeadm completion bash > ~/.kube/kubeadm_completion.bash.inc printf "\n# Kubeadm shell completion\nsource '$HOME/.kube/kubeadm_completion.bash.inc'\n" >> $HOME/.bash_profile source $HOME/.bash_profile