summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2021-07-29 18:44:22 +0200
committerSanto Cariotti <santo@dcariotti.me>2021-07-29 18:44:22 +0200
commita3be99079e9a644eaeaef857c52d7eebcc77e77e (patch)
tree3a1b57ea067314cb2a8d4b14fd473e0d851da080 /src
parentda294ec03b908b6865a636d79b49335ef4bb2db7 (diff)
fix: typo on text descripion of a command
Diffstat (limited to 'src')
-rw-r--r--src/commands.rs2
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,
}