node rm can be applied on not only active node

Signed-off-by: allencloud <allen.sun@daocloud.io>
This commit is contained in:
allencloud 2016-11-02 17:22:04 +08:00
parent 81e6e5e36d
commit 503053819e
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ func newRemoveCommand(dockerCli *command.DockerCli) *cobra.Command {
},
}
flags := cmd.Flags()
flags.BoolVar(&opts.force, "force", false, "Force remove an active node")
flags.BoolVar(&opts.force, "force", false, "Force remove a node from the swarm")
return cmd
}