Browse code

Fix usage message of `plugin inspect`

Signed-off-by: Harald Albers <github@albersweb.de>
(cherry picked from commit 1b58d0bc51e2bfc9e268dab762d1d891c18890c9)
Signed-off-by: Victor Vieux <vieux@docker.com>

Harald Albers authored on 2017/01/01 02:55:04
Showing 2 changed files
... ...
@@ -17,7 +17,7 @@ func newInspectCommand(dockerCli *command.DockerCli) *cobra.Command {
17 17
 	var opts inspectOptions
18 18
 
19 19
 	cmd := &cobra.Command{
20
-		Use:   "inspect [OPTIONS] PLUGIN|ID [PLUGIN|ID...]",
20
+		Use:   "inspect [OPTIONS] PLUGIN [PLUGIN...]",
21 21
 		Short: "Display detailed information on one or more plugins",
22 22
 		Args:  cli.RequiresMinArgs(1),
23 23
 		RunE: func(cmd *cobra.Command, args []string) error {
... ...
@@ -16,7 +16,7 @@ keywords: "plugin, inspect"
16 16
 # plugin inspect
17 17
 
18 18
 ```markdown
19
-Usage:	docker plugin inspect [OPTIONS] PLUGIN|ID [PLUGIN|ID...]
19
+Usage:	docker plugin inspect [OPTIONS] PLUGIN [PLUGIN...]
20 20
 
21 21
 Display detailed information on one or more plugins
22 22