From 108d7b7d94d8e777472991e0e41667cbe40b4311 Mon Sep 17 00:00:00 2001 From: Hirrolot Date: Sat, 5 Feb 2022 00:33:28 +0600 Subject: [PATCH] Update examples/dispatching2_features.rs Co-authored-by: Waffle Maybe --- examples/dispatching2_features.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/dispatching2_features.rs b/examples/dispatching2_features.rs index 19feb9af..1df30729 100644 --- a/examples/dispatching2_features.rs +++ b/examples/dispatching2_features.rs @@ -24,7 +24,6 @@ async fn main() { .branch( // Filter allow you to filter updates by some condition. dptree::filter( - // Note that `async move` is obligatory. |msg: Message| msg.chat.is_group() || msg.chat.is_supergroup(), ) // Endpoint is a last message handler.