Skip to content

Commit

Permalink
Update the short description and error message
Browse files Browse the repository at this point in the history
  • Loading branch information
sayboras committed Apr 19, 2020
1 parent a1ad2a2 commit 4f088bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/minikube/cmd/completion.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const boilerPlate = `

var completionCmd = &cobra.Command{
Use: "completion SHELL",
Short: "Outputs minikube shell completion for the given shell (bash or zsh)",
Short: "Outputs minikube shell completion for the given shell (bash, zsh or fish)",
Long: longDescription,
Run: func(cmd *cobra.Command, args []string) {
if len(args) != 1 {
Expand All @@ -87,7 +87,7 @@ var completionCmd = &cobra.Command{
} else {
err := GenerateFishCompletion(os.Stdout, cmd.Parent())
if err != nil {
exit.WithError("zsh completion failed", err)
exit.WithError("fish completion failed", err)
}
}

Expand Down

0 comments on commit 4f088bf

Please sign in to comment.