Skip to content

Commit

Permalink
Drop arrows from short descriptions (#669)
Browse files Browse the repository at this point in the history
  • Loading branch information
alenkacz authored and kudo-ci committed Jul 30, 2019
1 parent 0a7f2e1 commit ae24abc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pkg/kudoctl/cmd/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ func newInstallCmd() *cobra.Command {
var parameters []string
installCmd := &cobra.Command{
Use: "install <name>",
Short: "-> Install an official KUDO package.",
Short: "Install an official KUDO package.",
Long: `Install a KUDO package from local filesystem or the official repo.`,
Example: installExample,
RunE: func(cmd *cobra.Command, args []string) error {
Expand Down
2 changes: 1 addition & 1 deletion pkg/kudoctl/cmd/plan.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
func newPlanCmd() *cobra.Command {
newCmd := &cobra.Command{
Use: "plan",
Short: "-> View all available plans.",
Short: "View all available plans.",
Long: `The plan command has subcommands to view all available plans.`,
}

Expand Down
2 changes: 1 addition & 1 deletion pkg/kudoctl/cmd/test.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func newTestCmd() *cobra.Command {

testCmd := &cobra.Command{
Use: "test [flags]... [test directories]...",
Short: "-> Test KUDO and Operators.",
Short: "Test KUDO and Operators.",
Long: `Runs integration tests against a Kubernetes cluster.
The test operator supports connecting to an existing Kubernetes cluster or it can start a Kubernetes API server during the test run.
Expand Down
2 changes: 1 addition & 1 deletion pkg/kudoctl/cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ var (
func newVersionCmd() *cobra.Command {
versionCmd := &cobra.Command{
Use: "version",
Short: "-> Print the current KUDO package version.",
Short: "Print the current KUDO package version.",
Long: `Print the current installed KUDO package version.`,
Example: versionExample,
RunE: VersionCmd,
Expand Down

0 comments on commit ae24abc

Please sign in to comment.