From 3991f9f9a4967b76b6850df0dce11521978ec043 Mon Sep 17 00:00:00 2001 From: NAHO <90870942+trueNAHO@users.noreply.github.com> Date: Fri, 8 Dec 2023 09:48:36 +0100 Subject: [PATCH] docs: fix typo in 'tokio/src/sync/broadcast.rs' (#6182) --- tokio/src/sync/broadcast.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio/src/sync/broadcast.rs b/tokio/src/sync/broadcast.rs index 6de579a15e9..568a50bd59b 100644 --- a/tokio/src/sync/broadcast.rs +++ b/tokio/src/sync/broadcast.rs @@ -215,7 +215,7 @@ pub mod error { use std::fmt; - /// Error returned by from the [`send`] function on a [`Sender`]. + /// Error returned by the [`send`] function on a [`Sender`]. /// /// A **send** operation can only fail if there are no active receivers, /// implying that the message could never be received. The error contains the