From 68533aeccb34e6911cc331b897093d9f1bf3ff0a Mon Sep 17 00:00:00 2001 From: Javis Zhou <30723592+Jarvis-Zhou@users.noreply.github.com> Date: Wed, 23 Oct 2019 21:15:04 +0800 Subject: [PATCH] Fix golint failures --- pkg/minikube/config/profile.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/minikube/config/profile.go b/pkg/minikube/config/profile.go index 55b933bc3..f07aad446 100644 --- a/pkg/minikube/config/profile.go +++ b/pkg/minikube/config/profile.go @@ -44,7 +44,7 @@ func (p *Profile) IsValid() bool { return true } -// check if the profile is an internal keywords +// ProfileNameInReservedKeywords checks if the profile is an internal keywords func ProfileNameInReservedKeywords(name string) bool { for _, v := range keywords { if strings.EqualFold(v, name) { -- GitLab