From 48e946c2d0cb97f2aa0f698b162ed1fc9585dfaa Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Mon, 10 Aug 2020 20:00:45 +0600 Subject: [PATCH] add a simple fix in readme --- TelegramBotAPI-extensions-utils/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TelegramBotAPI-extensions-utils/README.md b/TelegramBotAPI-extensions-utils/README.md index 1a3bd51b2a..fef3caf2d2 100644 --- a/TelegramBotAPI-extensions-utils/README.md +++ b/TelegramBotAPI-extensions-utils/README.md @@ -104,7 +104,7 @@ val internalChannelsSizes = 128 flowsUpdatesFilter(internalChannelsSizes/* default is 64 */) { textMessages().onEach { println("I have received text message: ${it.content}") - } + }.launchIn(someCoroutineScope) /* ... */ } ```