From 8d4846f21009e82ed32ad171145df534b9aaef66 Mon Sep 17 00:00:00 2001 From: Khoa Le Date: Thu, 4 Aug 2022 06:37:15 +1000 Subject: [PATCH] docs: remove extra whitespaces in help text (#9710) Remove superfluous whitespaces Signed-off-by: Khoa Le --- cmd/compose/down.go | 2 +- cmd/compose/run.go | 2 +- docs/reference/compose_down.md | 2 +- docs/reference/compose_run.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cmd/compose/down.go b/cmd/compose/down.go index cc14e25df..484b4e73c 100644 --- a/cmd/compose/down.go +++ b/cmd/compose/down.go @@ -65,7 +65,7 @@ func downCommand(p *projectOptions, backend api.Service) *cobra.Command { removeOrphans := utils.StringToBool(os.Getenv("COMPOSE_REMOVE_ORPHANS")) flags.BoolVar(&opts.removeOrphans, "remove-orphans", removeOrphans, "Remove containers for services not defined in the Compose file.") flags.IntVarP(&opts.timeout, "timeout", "t", 10, "Specify a shutdown timeout in seconds") - flags.BoolVarP(&opts.volumes, "volumes", "v", false, " Remove named volumes declared in the `volumes` section of the Compose file and anonymous volumes attached to containers.") + flags.BoolVarP(&opts.volumes, "volumes", "v", false, "Remove named volumes declared in the `volumes` section of the Compose file and anonymous volumes attached to containers.") flags.StringVar(&opts.images, "rmi", "", `Remove images used by services. "local" remove only images that don't have a custom tag ("local"|"all")`) flags.SetNormalizeFunc(func(f *pflag.FlagSet, name string) pflag.NormalizedName { if name == "volume" { diff --git a/cmd/compose/run.go b/cmd/compose/run.go index 0fb3842c3..bf81ef52d 100644 --- a/cmd/compose/run.go +++ b/cmd/compose/run.go @@ -151,7 +151,7 @@ func runCommand(p *projectOptions, dockerCli command.Cli, backend api.Service) * flags.StringArrayVarP(&opts.labels, "label", "l", []string{}, "Add or override a label") flags.BoolVar(&opts.Remove, "rm", false, "Automatically remove the container when it exits") flags.BoolVarP(&opts.noTty, "no-TTY", "T", !dockerCli.Out().IsTerminal(), "Disable pseudo-TTY allocation (default: auto-detected).") - flags.StringVar(&opts.name, "name", "", " Assign a name to the container") + flags.StringVar(&opts.name, "name", "", "Assign a name to the container") flags.StringVarP(&opts.user, "user", "u", "", "Run as specified username or uid") flags.StringVarP(&opts.workdir, "workdir", "w", "", "Working directory inside the container") flags.StringVar(&opts.entrypoint, "entrypoint", "", "Override the entrypoint of the image") diff --git a/docs/reference/compose_down.md b/docs/reference/compose_down.md index 8864aa6e8..2dd5f2f2c 100644 --- a/docs/reference/compose_down.md +++ b/docs/reference/compose_down.md @@ -10,7 +10,7 @@ Stop and remove containers, networks | `--remove-orphans` | | | Remove containers for services not defined in the Compose file. | | `--rmi` | `string` | | Remove images used by services. "local" remove only images that don't have a custom tag ("local"\|"all") | | `-t`, `--timeout` | `int` | `10` | Specify a shutdown timeout in seconds | -| `-v`, `--volumes` | | | Remove named volumes declared in the `volumes` section of the Compose file and anonymous volumes attached to containers. | +| `-v`, `--volumes` | | | Remove named volumes declared in the `volumes` section of the Compose file and anonymous volumes attached to containers. | diff --git a/docs/reference/compose_run.md b/docs/reference/compose_run.md index 3d6169637..01be4664c 100644 --- a/docs/reference/compose_run.md +++ b/docs/reference/compose_run.md @@ -12,7 +12,7 @@ Run a one-off command on a service. | `-e`, `--env` | `stringArray` | | Set environment variables | | `-i`, `--interactive` | | | Keep STDIN open even if not attached. | | `-l`, `--label` | `stringArray` | | Add or override a label | -| `--name` | `string` | | Assign a name to the container | +| `--name` | `string` | | Assign a name to the container | | `-T`, `--no-TTY` | | | Disable pseudo-TTY allocation (default: auto-detected). | | `--no-deps` | | | Don't start linked services. | | `-p`, `--publish` | `stringArray` | | Publish a container's port(s) to the host. |