Skip to content

Commit

Permalink
Updates help for odo url create / delete
Browse files Browse the repository at this point in the history
Updates the help usage for odo url create / delete.

Closes redhat-developer#2260
  • Loading branch information
cdrage committed Oct 9, 2019
1 parent 78a1a88 commit 13c6fce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/odo/cli/url/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ func (o *URLCreateOptions) Run() (err error) {
func NewCmdURLCreate(name, fullName string) *cobra.Command {
o := NewURLCreateOptions()
urlCreateCmd := &cobra.Command{
Use: name + " [component name]",
Use: name + " [url name]",
Short: urlCreateShortDesc,
Long: urlCreateLongDesc,
Example: fmt.Sprintf(urlCreateExample, fullName),
Expand Down
2 changes: 1 addition & 1 deletion pkg/odo/cli/url/delete.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ func (o *URLDeleteOptions) Run() (err error) {
func NewCmdURLDelete(name, fullName string) *cobra.Command {
o := NewURLDeleteOptions()
urlDeleteCmd := &cobra.Command{
Use: name + " [component name]",
Use: name + " [url name]",
Short: urlDeleteShortDesc,
Long: urlDeleteLongDesc,
Args: cobra.ExactArgs(1),
Expand Down

0 comments on commit 13c6fce

Please sign in to comment.