Merge pull request #730 from PagerDuty/typo_fs

fix typo in fs-* command usage text
This commit is contained in:
Alex Dadgar
2016-01-31 14:33:21 -08:00
3 changed files with 3 additions and 3 deletions

View File

@@ -13,7 +13,7 @@ type FSCatCommand struct {
func (f *FSCatCommand) Help() string {
helpText := `
Usage: nomad fs-cat <alloc-id> <path>
Usage: nomad fs cat <alloc-id> <path>
Dispays a file in an allocation directory at the given path.
The path is relative to the allocation directory and defaults to root if unspecified.

View File

@@ -11,7 +11,7 @@ type FSListCommand struct {
func (f *FSListCommand) Help() string {
helpText := `
Usage: nomad fs-ls <alloc-id> <path>
Usage: nomad fs ls <alloc-id> <path>
ls displays the contents of the allocation directory for the passed allocation. The path
is relative to the root of the alloc dir and defaults to root if unspecified.

View File

@@ -11,7 +11,7 @@ type FSStatCommand struct {
func (f *FSStatCommand) Help() string {
helpText := `
Usage: nomad fs-stat <alloc-id> <path>
Usage: nomad fs stat <alloc-id> <path>
Displays information about an entry in an allocation directory at the given path.
The path is relative to the allocation directory and defaults to root if unspecified.