From b3dfcbdf802254834a9df9f74035086c7e88fcca Mon Sep 17 00:00:00 2001 From: Sean Lynch <42618346+swlynch99@users.noreply.github.com> Date: Wed, 30 Apr 2025 16:17:54 -0700 Subject: [PATCH] Fix a small typo in a comment --- ktls/src/ktls_stream.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ktls/src/ktls_stream.rs b/ktls/src/ktls_stream.rs index 5ddf0c5..2d6b615 100644 --- a/ktls/src/ktls_stream.rs +++ b/ktls/src/ktls_stream.rs @@ -247,7 +247,7 @@ where // // we could try looping (tricky code structure), but we can't, // for example, just call `poll_read`, which might fail not - // not with EAGAIN/EWOULDBLOCK, but because _another_ control + // with EAGAIN/EWOULDBLOCK, but because _another_ control // message is available. cx.waker().wake_by_ref(); return task::Poll::Pending;