From ec10017443d02754ec76ac2e813c531dddb6df27 Mon Sep 17 00:00:00 2001 From: tomocy Date: Wed, 8 Apr 2020 22:43:47 +0900 Subject: [PATCH] Fix typo --- cmd/minikube/cmd/start_flags.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/minikube/cmd/start_flags.go b/cmd/minikube/cmd/start_flags.go index b0556c79a2..5b768a5267 100644 --- a/cmd/minikube/cmd/start_flags.go +++ b/cmd/minikube/cmd/start_flags.go @@ -372,14 +372,14 @@ func updateExistingConfigFromFlags(cmd *cobra.Command, existing *config.ClusterC glog.Warningf("error calculate memory size in mb : %v", err) } if memInMB != existing.Memory { - out.WarningT("You not the change the memory size for an exiting minikube cluster. Pease first delete the cluster.") + out.WarningT("You cannot change the memory size for an exiting minikube cluster. Please first delete the cluster.") } } if cmd.Flags().Changed(cpus) { if viper.GetInt(cpus) != existing.CPUs { - out.WarningT("You not the change the CPUs for an exiting minikube cluster. Pease first delete the cluster.") + out.WarningT("You cannot change the CPUs for an exiting minikube cluster. Please first delete the cluster.") } } @@ -390,7 +390,7 @@ func updateExistingConfigFromFlags(cmd *cobra.Command, existing *config.ClusterC } if memInMB != existing.DiskSize { - out.WarningT("You not the change the Disk size for an exiting minikube cluster. Pease first delete the cluster.") + out.WarningT("You cannot change the Disk size for an exiting minikube cluster. Please first delete the cluster.") } }