Skip to content
This repository has been archived by the owner on Jan 8, 2024. It is now read-only.

Commit

Permalink
Merge pull request #1628 from hashicorp/lkysow-patch-1
Browse files Browse the repository at this point in the history
cli: Fix incorrect command help output
  • Loading branch information
briancain authored Jun 9, 2021
2 parents 19fc5f8 + fe4c704 commit fdc351d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .changelog/1628.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:improvement
cli: Fix incorrect description for `hostname list` command.
```
4 changes: 2 additions & 2 deletions internal/cli/hostname_list.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ func (c *HostnameListCommand) AutocompleteFlags() complete.Flags {
}

func (c *HostnameListCommand) Synopsis() string {
return "List all registered hostname."
return "List all registered hostnames."
}

func (c *HostnameListCommand) Help() string {
return formatHelp(`
Usage: waypoint hostname delete HOSTNAME
Usage: waypoint hostname list
List all registered hostnames.
Expand Down

0 comments on commit fdc351d

Please sign in to comment.