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