diff --git a/src/requests/request.rs b/src/requests/request.rs index 7e504803..38ca6a61 100644 --- a/src/requests/request.rs +++ b/src/requests/request.rs @@ -26,7 +26,7 @@ pub trait Request: HasPayload { /// The type of an error that may happen while sending a request to Telegram. type Err: std::error::Error + Send; - /// A type of the future returned by the [`send`](Request::send) method. + /// The type of the future returned by the [`send`](Request::send) method. type Send: Future, Self::Err>> + Send; /// A type of the future returned by the [`send_ref`](Request::send_ref)