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)
pull/3841/head
Anders F Björklund 2019-03-10 13:42:18 +01:00
parent 61dd4ab1fd
commit 0d8e591a4a
2 changed files with 2 additions and 2 deletions

View File

@ -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{}

View File

@ -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 "},
}