From e631e8ce688babbf3f4c4fb625fcfd5f52c6ce6b Mon Sep 17 00:00:00 2001 From: draoi Date: Mon, 29 Jan 2024 11:09:42 +0100 Subject: [PATCH] doc: minor tweak to channel.rs doc --- src/net/channel.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/net/channel.rs b/src/net/channel.rs index ed4470dae..4397c1dd6 100644 --- a/src/net/channel.rs +++ b/src/net/channel.rs @@ -87,8 +87,8 @@ pub struct Channel { impl Channel { /// Sets up a new channel. Creates a reader and writer [`PtStream`] and - /// summons the message subscriber subsystem. Performs a network handshake - /// on the subsystem dispatchers. + /// the message subscriber subsystem. Performs a network handshake on the + /// subsystem dispatchers. pub async fn new(stream: Box, addr: Url, session: SessionWeakPtr) -> Arc { let (reader, writer) = io::split(stream); let reader = Mutex::new(reader);