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/ignore.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/ignore.rs')
| -rw-r--r-- | src/modules/commands/admins/ignore.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/commands/admins/ignore.rs b/src/modules/commands/admins/ignore.rs index a716a45..39f64c1 100644 --- a/src/modules/commands/admins/ignore.rs +++ b/src/modules/commands/admins/ignore.rs @@ -18,7 +18,7 @@ impl Command for IgnoreAdd { fn options(&self) -> Arc<CommandOptions> { let default = CommandOptions::default(); let options = CommandOptions { - desc: Some("Want me to ignore a channel ? Don't worry, I ain't seen a thing.".to_string()), + desc: Some("Want me to ignore a channel? Don't worry, I ain't seen a thing.".to_string()), usage: Some("<channel_resolvable>".to_string()), example: Some("#general".to_string()), min_args: Some(1), @@ -99,7 +99,7 @@ impl Command for IgnoreList { fn options(&self) -> Arc<CommandOptions> { let default = CommandOptions::default(); let options = CommandOptions { - desc: Some("You want ME to tell YOU want channels I'm ignoring ?.".to_string()), + desc: Some("You want ME to tell YOU want channels I'm ignoring?.".to_string()), aliases: vec!["ls"].iter().map(|e| e.to_string()).collect(), required_permissions: Permissions::MANAGE_GUILD, max_args: Some(0), |