This commit is contained in:
Waffle 2021-02-07 01:50:53 +03:00
parent fc88c72a26
commit 21ecc39dc7

View file

@ -29,7 +29,7 @@ use crate::{
/// // Required parameters are supplied to the `Requester` methods:
/// bot.send_message(0, "<b>Text</b>")
/// // Optional parameters can be supplied by calling setters
/// .parse_mode(ParseMode::HTML)
/// .parse_mode(ParseMode::Html)
/// // To send request to telegram you need to call `.send()` and await the resulting future
/// .send()
/// .await?;