'Insert here your bot's name' -> 'Your bot's name here'

This commit is contained in:
Temirkhan Myrzamadi 2020-07-31 00:47:26 +06:00
parent f5c7da2610
commit 7097dd4f34
3 changed files with 3 additions and 3 deletions

View file

@ -162,7 +162,7 @@ async fn main() {
let bot = Bot::from_env();
teloxide::commands_repl(bot, panic!("Insert here your bot's name"), answer).await;
teloxide::commands_repl(bot, panic!("Your bot's name here"), answer).await;
}
```

View file

@ -139,5 +139,5 @@ async fn run() {
let bot = Bot::from_env();
teloxide::commands_repl(bot, panic!("Insert here your bot's name"), action).await;
teloxide::commands_repl(bot, panic!("Your bot's name here"), action).await;
}

View file

@ -36,5 +36,5 @@ async fn run() {
let bot = Bot::from_env();
teloxide::commands_repl(bot, panic!("Insert here your bot's name"), answer).await;
teloxide::commands_repl(bot, panic!("Your bot's name here"), answer).await;
}