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/mods | |
| 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/mods')
| -rw-r--r-- | src/modules/commands/mods/hackbans.rs | 6 | ||||
| -rw-r--r-- | src/modules/commands/mods/kickbans.rs | 2 | ||||
| -rw-r--r-- | src/modules/commands/mods/mute.rs | 4 | ||||
| -rw-r--r-- | src/modules/commands/mods/notes.rs | 4 | ||||
| -rw-r--r-- | src/modules/commands/mods/roles.rs | 4 | ||||
| -rw-r--r-- | src/modules/commands/mods/watchlist.rs | 2 |
6 files changed, 11 insertions, 11 deletions
diff --git a/src/modules/commands/mods/hackbans.rs b/src/modules/commands/mods/hackbans.rs index 5cf8030..de68cdb 100644 --- a/src/modules/commands/mods/hackbans.rs +++ b/src/modules/commands/mods/hackbans.rs @@ -18,7 +18,7 @@ impl Command for HackbanAdd { let default = CommandOptions::default(); let options = CommandOptions { // desc: Some("Adds a user to the hackban list. Users on this list will be banned on joining.".to_string()), - desc: Some("This ? It'll add someone to the \"hackban\" list, basically, they'll be banned upon joining.".to_string()), + desc: Some("This? It'll add someone to the \"hackban\" list, basically, they'll be banned upon joining.".to_string()), usage: Some("<user_id> [reason]".to_string()), example: Some("217348698294714370 spamming images in general".to_string()), required_permissions: Permissions::BAN_MEMBERS, @@ -55,7 +55,7 @@ impl Command for HackbanRemove { fn options(&self) -> Arc<CommandOptions> { let default = CommandOptions::default(); let options = CommandOptions { - desc: Some("Feeling forgiveful ? Take someone off the \"hackban\" list !".to_string()), + desc: Some("Feeling forgiveful? Take someone off the \"hackban\" list!".to_string()), usage: Some("<user_id>".to_string()), example: Some("217348698294714370".to_string()), required_permissions: Permissions::BAN_MEMBERS, @@ -88,7 +88,7 @@ impl Command for HackbanList { let default = CommandOptions::default(); let options = CommandOptions { // desc: Some("Lets users on the hackban list along with their reasons, if provided.".to_string()), - desc: Some("Checking up ? See who's on the \"hackban\" list.".to_string()), + desc: Some("Checking up? See who's on the \"hackban\" list.".to_string()), required_permissions: Permissions::BAN_MEMBERS, ..default }; diff --git a/src/modules/commands/mods/kickbans.rs b/src/modules/commands/mods/kickbans.rs index ca26350..f7f5de4 100644 --- a/src/modules/commands/mods/kickbans.rs +++ b/src/modules/commands/mods/kickbans.rs @@ -71,7 +71,7 @@ impl Command for KickUser { let default = CommandOptions::default(); let options = CommandOptions { // desc: Some("Kicks a user. Reason is discarded due to a limitation in Serenity but will be implemented at a later date.".to_string()), - desc: Some("Want to temporarily set-back someone ? (Reason is currentaly disabled.)".to_string()), + desc: Some("Want to temporarily set-back someone? (Reason is currentaly disabled.)".to_string()), usage: Some("<user_resolvable> [reason]".to_string()), example: Some("217348698294714370 spamming images in general".to_string()), required_permissions: Permissions::KICK_MEMBERS, 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, diff --git a/src/modules/commands/mods/notes.rs b/src/modules/commands/mods/notes.rs index 495e93d..9427732 100644 --- a/src/modules/commands/mods/notes.rs +++ b/src/modules/commands/mods/notes.rs @@ -18,7 +18,7 @@ impl Command for NoteAdd { fn options(&self) -> Arc<CommandOptions> { let default = CommandOptions::default(); let options = CommandOptions { - desc: Some("Of the forgetful kind ? Add a note to someone !".to_string()), + desc: Some("Of the forgetful kind? Add a note to someone!".to_string()), usage: Some("<user_resolvable> <note>".to_string()), example: Some("@fun test note".to_string()), required_permissions: Permissions::MANAGE_MESSAGES, @@ -77,7 +77,7 @@ impl Command for NoteList { fn options(&self) -> Arc<CommandOptions> { let default = CommandOptions::default(); let options = CommandOptions { - desc: Some("Checking in ? See all the notes on someone.".to_string()), + desc: Some("Checking in? See all the notes on someone.".to_string()), usage: Some("<user_resolvable>".to_string()), example: Some("@fun".to_string()), aliases: vec!["ls"].iter().map(|e| e.to_string()).collect(), diff --git a/src/modules/commands/mods/roles.rs b/src/modules/commands/mods/roles.rs index 1d5e8d5..ca206c2 100644 --- a/src/modules/commands/mods/roles.rs +++ b/src/modules/commands/mods/roles.rs @@ -142,7 +142,7 @@ impl Command for AddRole { fn options(&self) -> Arc<CommandOptions> { let default = CommandOptions::default(); let options = CommandOptions { - desc: Some("Welcome to the club ! Add a role(s) to someone !".to_string()), + desc: Some("Welcome to the club! Add a role(s) to someone!".to_string()), usage: Some("<user_resolvable> <role_resolvables as CSV>".to_string()), example: Some("@fun red, green".to_string()), aliases: vec!["ar"].iter().map(|e| e.to_string()).collect(), @@ -292,7 +292,7 @@ impl Command for RoleColour { fn options(&self) -> Arc<CommandOptions> { let default = CommandOptions::default(); let options = CommandOptions { - desc: Some("Feeling \"colourful\" ? Change the colour of a role !".to_string()), + desc: Some("Feeling \"colourful\"? Change the colour of a role!".to_string()), usage: Some("<role_resolvable> <colour>".to_string()), example: Some("418130449089691658 e0ffff".to_string()), aliases: vec!["rc", "rolecolor"].iter().map(|e| e.to_string()).collect(), diff --git a/src/modules/commands/mods/watchlist.rs b/src/modules/commands/mods/watchlist.rs index b4470a5..4f3cd7b 100644 --- a/src/modules/commands/mods/watchlist.rs +++ b/src/modules/commands/mods/watchlist.rs @@ -49,7 +49,7 @@ impl Command for WatchlistRemove { fn options(&self) -> Arc<CommandOptions> { let default = CommandOptions::default(); let options = CommandOptions { - desc: Some("Given up, have you ?".to_string()), + desc: Some("Given up, have you?".to_string()), usage: Some("<user_resolvable>".to_string()), example: Some("@fun".to_string()), aliases: vec!["del", "rm"].iter().map(|e| e.to_string()).collect(), |