From 5e3ad02fb106f72194c13bdff8317e9a99953c05 Mon Sep 17 00:00:00 2001 From: Mattia Pitossi Date: Sat, 15 Nov 2025 11:43:02 +0100 Subject: [PATCH] sync: fix a typo in the docs of `PollSender::is_closed` (#7737) --- tokio-util/src/sync/mpsc.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio-util/src/sync/mpsc.rs b/tokio-util/src/sync/mpsc.rs index 8e2ff8146..4092822e2 100644 --- a/tokio-util/src/sync/mpsc.rs +++ b/tokio-util/src/sync/mpsc.rs @@ -200,7 +200,7 @@ impl PollSender { result } - /// Checks whether this sender is been closed. + /// Checks whether this sender is closed. /// /// The underlying channel that this sender was wrapping may still be open. pub fn is_closed(&self) -> bool {