Fix a typo in the notification text.

pull/287/head
Dan Lorenc 2016-07-07 07:22:05 -07:00
parent 22dccc781d
commit d65040fffb
1 changed files with 2 additions and 1 deletions

View File

@ -64,7 +64,8 @@ func MaybePrintUpdateText(output io.Writer, url string, lastUpdatePath string) {
fmt.Fprintf(output, `There is a newer version of minikube available (%s%s). Download it here:
%s%s
To disable this notification, add WantUpdateNotification: False to the json config file at %s
(you may have to create the file config.json in this folder if you have no previous configuration)\n`,
(you may have to create the file config.json in this folder if you have no previous configuration)
`,
version.VersionPrefix, latestVersion, updateLinkPrefix, latestVersion, constants.MakeMiniPath("config"))
}
}