diff --git a/src/types/keyboard_button_poll_type.rs b/src/types/keyboard_button_poll_type.rs index 6994fa72..1d9a7980 100644 --- a/src/types/keyboard_button_poll_type.rs +++ b/src/types/keyboard_button_poll_type.rs @@ -6,12 +6,12 @@ use serde::{Deserialize, Serialize}; #[serde(rename_all = "snake_case")] #[serde(tag = "type")] pub enum KeyboardButtonPollType { - /// If [`Quiz`] is passed, the user will be allowed to create only polls in + /// If `Quiz` is passed, the user will be allowed to create only polls in /// the quiz mode. Quiz, - /// If [`Regular`] is passed, only regular polls will be allowed. + /// If `Regular` is passed, only regular polls will be allowed. Regular, - /// If [`Any`] is passed, the user will be allowed to create a poll of any + /// If `Any` is passed, the user will be allowed to create a poll of any /// type. #[serde(rename = "")] Any,