diff options
author | Santo Cariotti <santo@dcariotti.me> | 2021-07-29 18:44:22 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2021-07-29 18:44:22 +0200 |
commit | a3be99079e9a644eaeaef857c52d7eebcc77e77e (patch) | |
tree | 3a1b57ea067314cb2a8d4b14fd473e0d851da080 | |
parent | da294ec03b908b6865a636d79b49335ef4bb2db7 (diff) |
fix: typo on text descripion of a command
-rw-r--r-- | src/commands.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands.rs b/src/commands.rs index 11c59a9..1aee098 100644 --- a/src/commands.rs +++ b/src/commands.rs @@ -5,7 +5,7 @@ use teloxide::utils::command::BotCommand; #[derive(BotCommand)] #[command(rename = "lowercase", description = "These commands are supported:")] pub enum Command { - #[command(description = "display this text")] + #[command(description = "Display this text")] Help, } |