diff options
Diffstat (limited to 'src/modules/commands/mods/mute.rs')
| -rw-r--r-- | src/modules/commands/mods/mute.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/commands/mods/mute.rs b/src/modules/commands/mods/mute.rs index 12ee36d..0f8dd53 100644 --- a/src/modules/commands/mods/mute.rs +++ b/src/modules/commands/mods/mute.rs @@ -22,7 +22,7 @@ impl Command for Mute { fn options(&self) -> Arc<CommandOptions> { let default = CommandOptions::default(); let options = CommandOptions { - desc: Some("Someone being annoyin ? Mute em' ! (Optionally, include a reason and/ or time for the mute to expire).".to_string()), + desc: Some("Someone being annoyin? Mute em'! (Optionally, include a reason and/ or time for the mute to expire).".to_string()), usage: Some("<user_resolvable> [/t time] [/r reason]".to_string()), example: Some("@fun /t 1day /r spam".to_string()), required_permissions: Permissions::MANAGE_ROLES | Permissions::MUTE_MEMBERS, @@ -123,7 +123,7 @@ impl Command for Unmute { fn options(&self) -> Arc<CommandOptions> { let default = CommandOptions::default(); let options = CommandOptions { - desc: Some("How nice, you'll unmute them !".to_string()), + desc: Some("How nice, you'll unmute them!".to_string()), usage: Some("<user_resolvable>".to_string()), example: Some("@fun".to_string()), required_permissions: Permissions::MANAGE_ROLES | Permissions::MUTE_MEMBERS, |