diff options
| author | Fuwn <[email protected]> | 2020-11-01 00:50:40 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2020-11-01 00:50:40 -0700 |
| commit | d9160764c018bb04878f092b6eff592b63e1b262 (patch) | |
| tree | 5e52b1053ce020d9abfc8ca3434c3dc17d92704f /src/modules/commands/admins/config.rs | |
| parent | feat (desc) (diff) | |
| download | dep-core-next-d9160764c018bb04878f092b6eff592b63e1b262.tar.xz dep-core-next-d9160764c018bb04878f092b6eff592b63e1b262.zip | |
chore: correct punctuation
Diffstat (limited to 'src/modules/commands/admins/config.rs')
| -rw-r--r-- | src/modules/commands/admins/config.rs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/modules/commands/admins/config.rs b/src/modules/commands/admins/config.rs index 43e2215..e0533ab 100644 --- a/src/modules/commands/admins/config.rs +++ b/src/modules/commands/admins/config.rs @@ -104,7 +104,7 @@ impl Command for ConfigAutorole { fn options(&self) -> Arc<CommandOptions> { let default = CommandOptions::default(); let options = CommandOptions { - desc: Some("Want to mess with my auto-role settings ? (A role must be provided for `add` or `remove`.)".to_string()), + desc: Some("Want to mess with my auto-role settings? (A role must be provided for `add` or `remove`.)".to_string()), usage: Some("<add|remove|enable|disable> <role_resolvable|_>".to_string()), example: Some("add member".to_string()), min_args: Some(1), @@ -177,7 +177,7 @@ impl Command for ConfigAdmin { fn options(&self) -> Arc<CommandOptions> { let default = CommandOptions::default(); let options = CommandOptions { - desc: Some("Who do you want me to consider an admin ?".to_string()), + desc: Some("Who do you want me to consider an admin?".to_string()), usage: Some("<add|remove> <role_resolvable>".to_string()), example: Some("add admin".to_string()), min_args: Some(2), @@ -244,7 +244,7 @@ impl Command for ConfigMod { fn options(&self) -> Arc<CommandOptions> { let default = CommandOptions::default(); let options = CommandOptions { - desc: Some("Welcome to moderation !".to_string()), + desc: Some("Welcome to moderation!".to_string()), usage: Some("<add|remove> <role_resolvable>".to_string()), example: Some("add staff".to_string()), min_args: Some(2), @@ -311,7 +311,7 @@ impl Command for ConfigAudit { fn options(&self) -> Arc<CommandOptions> { let default = CommandOptions::default(); let options = CommandOptions { - desc: Some("Amping up security around here ? Change audit log settings. (A channel must be provided for `channel`.)".to_string()), + desc: Some("Amping up security around here? Change audit log settings. (A channel must be provided for `channel`.)".to_string()), usage: Some("<enable|disable|channel> <channel_resolvable>".to_string()), example: Some("channel #audit-logs".to_string()), min_args: Some(1), @@ -443,9 +443,9 @@ impl Command for ConfigWelcome { let default = CommandOptions::default(); let options = CommandOptions { // desc: Some("Change welcome message settings.\nOption is one of enable, disable, channel, message, type and the respective values should be none, none, channel_resolvable, desired message.\nType designates if the message is plain or embed. Anything other than embed will result in plain.".to_string()), - desc: Some("Want a sick, custom welcome message !?\n\nOptions:\n`enable` - none.\n`disable` - none.\n`channel` - `channel_resolvable` (Mentionable).\n`message` - Your desired welcome message.\n`type` - `plain` or `embed`.".to_string()), + desc: Some("Want a sick, custom welcome message!?\n\nOptions:\n`enable` - none.\n`disable` - none.\n`channel` - `channel_resolvable` (Mentionable).\n`message` - Your desired welcome message.\n`type` - `plain` or `embed`.".to_string()), usage: Some("<option> <value>".to_string()), - example: Some("message Hey {user} ! Welcome to {guild} !".to_string()), + example: Some("message Hey {user}! Welcome to {guild}!".to_string()), min_args: Some(1), required_permissions: Permissions::MANAGE_GUILD, ..default @@ -511,7 +511,7 @@ impl Command for ConfigWelcome { // let default = CommandOptions::default(); // let options = CommandOptions { // // desc: Some("Change welcome message settings.\nOption is one of enable, disable, channel, message, type and the respective values should be none, none, channel_resolvable, desired message.\nType designates if the message is plain or embed. Anything other than embed will result in plain.".to_string()), -// desc: Some("People leaving you ? At least make it cool and custom.\n\nOptions:\n`enable` - none.\n`disable` - none.\n`channel` - `channel_resolvable` (Mentionable).\n`message` - Your desired welcome message.\n`type` - `plain` or `embed`.".to_string()), +// desc: Some("People leaving you? At least make it cool and custom.\n\nOptions:\n`enable` - none.\n`disable` - none.\n`channel` - `channel_resolvable` (Mentionable).\n`message` - Your desired welcome message.\n`type` - `plain` or `embed`.".to_string()), // usage: Some("<option> <value>".to_string()), // example: Some("message {user} has left {guild}...".to_string()), // min_args: Some(1), @@ -645,7 +645,7 @@ impl Command for ConfigCommands { fn options(&self) -> Arc<CommandOptions> { let default = CommandOptions::default(); let options = CommandOptions { - desc: Some("Find something annoying ? Disable it ! (A command name must be provided.)".to_string()), + desc: Some("Find something annoying? Disable it! (A command name must be provided.)".to_string()), usage: Some("<enable|disable> <command_name>".to_string()), example: Some("disable e621".to_string()), min_args: Some(2), |