diff options
Diffstat (limited to 'src/modules/commands/mods/roles.rs')
| -rw-r--r-- | src/modules/commands/mods/roles.rs | 4 |
1 files changed, 2 insertions, 2 deletions
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(), |