diff --git a/crates/teloxide/src/utils/command.rs b/crates/teloxide/src/utils/command.rs index d3413e9d..abff8b12 100644 --- a/crates/teloxide/src/utils/command.rs +++ b/crates/teloxide/src/utils/command.rs @@ -169,6 +169,8 @@ pub use teloxide_macros::BotCommands; /// /// 3. `#[command(description = "description")]` and `/// description` /// Give your command a description. It will be shown in the help message. +/// You can also write doc comment above the command, and it will be used as a +/// description as well. /// /// 4. `#[command(parse_with = "parser")]` /// Parse arguments of one command with a given parser. `parser` must be a