This commit is contained in:
Waffle 2019-10-06 11:21:18 +03:00
parent 4c478b1f77
commit 553b1666a6

View file

@ -64,7 +64,7 @@ type Handlers<'a, T, E> = Vec<(Box<dyn Filter<T> + 'a>, Box<dyn Handler<'a, T, E
/// }) /// })
/// // Add 'handler' that will handle all /// // Add 'handler' that will handle all
/// // messages edited in chat with the bot /// // messages edited in chat with the bot
/// .edited_message_handler(true, edit); /// .edited_message_handler(true, handle_edited_message);
/// ///
/// // Start dispatching updates from long polling /// // Start dispatching updates from long polling
/// dp.dispatch(polling(&bot)).await; /// dp.dispatch(polling(&bot)).await;