Skip to content

Commit

Permalink
fix: unused doc comment (#386)
Browse files Browse the repository at this point in the history
  • Loading branch information
sinui0 authored Nov 18, 2023
1 parent 786195b commit 6152883
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/tls/tls-client/src/conn.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 6152883

Please sign in to comment.