From cd57039927917295566ab9dcaa3639d730dc9892 Mon Sep 17 00:00:00 2001 From: dzzg Date: Tue, 6 Aug 2019 06:22:46 +0800 Subject: [PATCH] cleanup: fix typo "contstruct" -> "construct" --- cmd/kubeadm/app/util/apiclient/dryrunclient.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/kubeadm/app/util/apiclient/dryrunclient.go b/cmd/kubeadm/app/util/apiclient/dryrunclient.go index a6c31e5fbe2..69ec71d5e71 100644 --- a/cmd/kubeadm/app/util/apiclient/dryrunclient.go +++ b/cmd/kubeadm/app/util/apiclient/dryrunclient.go @@ -32,7 +32,7 @@ import ( kubeadmutil "k8s.io/kubernetes/cmd/kubeadm/app/util" ) -// DryRunGetter is an interface that must be supplied to the NewDryRunClient function in order to contstruct a fully functional fake dryrun clientset +// DryRunGetter is an interface that must be supplied to the NewDryRunClient function in order to construct a fully functional fake dryrun clientset type DryRunGetter interface { HandleGetAction(core.GetAction) (bool, runtime.Object, error) HandleListAction(core.ListAction) (bool, runtime.Object, error)