Skip to content

Commit

Permalink
Improve help message for device-remove
Browse files Browse the repository at this point in the history
* It is clearer that multiple devices can be removed
  • Loading branch information
NilsIrl committed Jun 18, 2022
1 parent 7535430 commit ebf05d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,10 @@ fn app() -> clap::App<'static, 'static> {
.subcommand(
SubCommand::with_name("remove")
.alias("rm")
.about("Remove a device")
.about("Remove one or multiple devices")
.arg(
Arg::with_name("ids")
.help("Public, private key or name of the device to remove.")
.help("Public, private key or name of the device(s) to remove.")
.required(true)
.takes_value(true)
.multiple(true),
Expand Down

0 comments on commit ebf05d2

Please sign in to comment.