Browse Source

Merge pull request #2417 from kelseyhightower/improve-etcdctl-ls-command-help

etcdctl: update the ls subcommand help to match behavior
Xiang Li 10 years ago
parent
commit
61e9b99edb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      etcdctl/command/ls_command.go

+ 1 - 1
etcdctl/command/ls_command.go

@@ -27,7 +27,7 @@ func NewLsCommand() cli.Command {
 		Usage: "retrieve a directory",
 		Usage: "retrieve a directory",
 		Flags: []cli.Flag{
 		Flags: []cli.Flag{
 			cli.BoolFlag{Name: "sort", Usage: "returns result in sorted order"},
 			cli.BoolFlag{Name: "sort", Usage: "returns result in sorted order"},
-			cli.BoolFlag{Name: "recursive", Usage: "returns all values for key and child keys"},
+			cli.BoolFlag{Name: "recursive", Usage: "returns all key names recursively for the given path"},
 			cli.BoolFlag{Name: "p", Usage: "append slash (/) to directories"},
 			cli.BoolFlag{Name: "p", Usage: "append slash (/) to directories"},
 		},
 		},
 		Action: func(c *cli.Context) {
 		Action: func(c *cli.Context) {