DockerCLI/cli/command/swarm
Sebastiaan van Stijn b9a7f35e02
Singularize / pluralize "argument(s)" in error message
The validation functions to test for the number of passed arguments did not
pluralize `argument(s)`, and used `argument(s)` in all cases.

This patch adds a simple `pluralize()` helper to improve this.

Before this change, `argument(s)` was used in all cases:

    $ docker container ls foobar
    "docker container ls" accepts no argument(s).

    $ docker network create one two
    "docker network create" requires exactly 1 argument(s).

    $ docker network connect
    "docker network connect" requires exactly 2 argument(s).

    $ docker volume create one two
    "docker volume create" requires at most 1 argument(s).

After this change, `argument(s)` is properly singularized or plurarized:

    $ docker container ls foobar
    "docker container ls" accepts no arguments.

    $ docker network create one two
    "docker network create" requires exactly 1 argument.

    $ docker network connect
    "docker network connect" requires exactly 2 arguments.

    $ docker volume create one two
    "docker volume create" requires at most 1 argument.

Test cases were updated accordingly.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2017-08-12 18:25:38 +02:00
..
progress Provide command line tool to view and rotate swarm's currently CA root certificate. 2017-05-16 14:31:15 -07:00
testdata Output `docker swarm join` on a single line 2017-05-03 17:46:41 -07:00
ca.go Fix warning in docker CLI when `swarm ca --ca-cert`, etc. flags are passed, 2017-07-12 14:56:28 -07:00
ca_test.go Fix warning in docker CLI when `swarm ca --ca-cert`, etc. flags are passed, 2017-07-12 14:56:28 -07:00
client_test.go cli: gofmt + goimports 2017-05-08 10:51:30 -07:00
cmd.go Refactor caCommand 2017-06-29 17:57:06 -04:00
init.go Add unparam linter 2017-06-14 16:55:08 -07:00
init_test.go Update FakeCli to remove duplication in tests. 2017-07-11 14:49:30 -04:00
join.go Inroduce SWARM --data-path-addr flag 2017-05-03 18:45:48 -07:00
join_test.go Update FakeCli to remove duplication in tests. 2017-07-11 14:49:30 -04:00
join_token.go Output `docker swarm join` on a single line 2017-05-03 17:46:41 -07:00
join_token_test.go Update FakeCli to remove duplication in tests. 2017-07-11 14:49:30 -04:00
leave.go Update imports. 2017-04-17 18:07:56 -04:00
leave_test.go Singularize / pluralize "argument(s)" in error message 2017-08-12 18:25:38 +02:00
opts.go Refactor caCommand 2017-06-29 17:57:06 -04:00
opts_test.go Import docker/docker/cli 2017-04-17 17:40:59 -04:00
unlock.go Update imports. 2017-04-17 18:07:56 -04:00
unlock_key.go Add unparam linter 2017-06-14 16:55:08 -07:00
unlock_key_test.go Singularize / pluralize "argument(s)" in error message 2017-08-12 18:25:38 +02:00
unlock_test.go Singularize / pluralize "argument(s)" in error message 2017-08-12 18:25:38 +02:00
update.go Add unparam linter 2017-06-14 16:55:08 -07:00
update_test.go Singularize / pluralize "argument(s)" in error message 2017-08-12 18:25:38 +02:00