From 61528833cdd1016644453d3bd28ce82fcf8b6266 Mon Sep 17 00:00:00 2001 From: "sinu.eth" <65924192+sinui0@users.noreply.github.com> Date: Sat, 18 Nov 2023 14:07:37 +0300 Subject: [PATCH] fix: unused doc comment (#386) --- components/tls/tls-client/src/conn.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/tls/tls-client/src/conn.rs b/components/tls/tls-client/src/conn.rs index 557b19eba1..fd5d68e5e9 100644 --- a/components/tls/tls-client/src/conn.rs +++ b/components/tls/tls-client/src/conn.rs @@ -221,8 +221,8 @@ impl ConnectionCommon { pub fn reader(&mut self) -> Reader { Reader { received_plaintext: &mut self.common_state.received_plaintext, - /// Are we done? i.e., have we processed all received messages, and received a - /// close_notify to indicate that no new messages will arrive? + // Are we done? i.e., have we processed all received messages, and received a + // close_notify to indicate that no new messages will arrive? peer_cleanly_closed: self.common_state.has_received_close_notify && !self.message_deframer.has_pending(), has_seen_eof: self.common_state.has_seen_eof,