From 1e2a03d32707e752a88a8853589da148714df214 Mon Sep 17 00:00:00 2001 From: sean borg Date: Fri, 12 Aug 2022 19:59:33 +0100 Subject: [PATCH] remove reference to for_each_incoming --- src/client/mod.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/client/mod.rs b/src/client/mod.rs index ccc6bd5..dee4139 100644 --- a/src/client/mod.rs +++ b/src/client/mod.rs @@ -984,8 +984,7 @@ impl Client { /// Gets a stream of incoming messages from the `Client`'s connection. This is only necessary /// when trying to set up more complex clients, and requires use of the `futures` crate. Most - /// IRC bots should be able to get by using only `for_each_incoming` to handle received - /// messages. You can find some examples of more complex setups using `stream` in the + /// You can find some examples of setups using `stream` in the /// [GitHub repository](https://github.com/aatxe/irc/tree/stable/examples). /// /// **Note**: The stream can only be returned once. Subsequent attempts will cause a panic.