From 0d8e591a4a32d04cd749c0548eaf8671c41f6962 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anders=20F=20Bj=C3=B6rklund?= Date: Sun, 10 Mar 2019 13:42:18 +0100 Subject: [PATCH] Fix some misc typos, as reported by misspell minikube/pkg/gvisor/enable.go Line 120: warning: "downlaods" is a misspelling of "downloads" (misspell) minikube/pkg/minikube/console/style.go Line 96: warning: "embarassed" is a misspelling of "embarrassed" (misspell) --- pkg/gvisor/enable.go | 2 +- pkg/minikube/console/style.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/gvisor/enable.go b/pkg/gvisor/enable.go index 2268c7381d..89a66e0642 100644 --- a/pkg/gvisor/enable.go +++ b/pkg/gvisor/enable.go @@ -117,7 +117,7 @@ func runsc() error { return downloadFileToDest(constants.GvisorURL, dest) } -// downloadFileToDest downlaods the given file to the dest +// downloadFileToDest downloads the given file to the dest // if something already exists at dest, first remove it func downloadFileToDest(url, dest string) error { client := &http.Client{} diff --git a/pkg/minikube/console/style.go b/pkg/minikube/console/style.go index 366ad27699..83165e0025 100644 --- a/pkg/minikube/console/style.go +++ b/pkg/minikube/console/style.go @@ -93,7 +93,7 @@ var styles = map[string]style{ "verifying-noline": {Prefix: "🤔 ", OmitNewline: true}, "kubectl": {Prefix: "💗 ", LowPrefix: "+ "}, "meh": {Prefix: "🙄 ", LowPrefix: "? "}, - "embarassed": {Prefix: "🤦 ", LowPrefix: "* "}, + "embarrassed": {Prefix: "🤦 ", LowPrefix: "* "}, "tip": {Prefix: "💡 ", LowPrefix: "i "}, }