aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mumctl/src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mumctl/src/main.rs b/mumctl/src/main.rs
index 7d02582..d1d0a62 100644
--- a/mumctl/src/main.rs
+++ b/mumctl/src/main.rs
@@ -94,10 +94,10 @@ enum Target {
Channel {
/// The message to send
message: String,
- /// If the message should be sent recursivley to sub-channels
+ /// If the message should be sent recursively to sub-channels
#[structopt(short = "r", long = "recursive")]
recursive: bool,
- /// Which channels to send to
+ /// Which channels to send to. Defaults to current channel if left empty
names: Vec<String>,
},
User {