summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tokio/src/sync/broadcast.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tokio/src/sync/broadcast.rs b/tokio/src/sync/broadcast.rs
index cd62ffd5..a64774ec 100644
--- a/tokio/src/sync/broadcast.rs
+++ b/tokio/src/sync/broadcast.rs
@@ -21,7 +21,7 @@
//! ## Lagging
//!
//! As sent messages must be retained until **all** [`Receiver`] handles receive
-//! a clone, broadcast channels are suspectible to the "slow receiver" problem.
+//! a clone, broadcast channels are susceptible to the "slow receiver" problem.
//! In this case, all but one receiver are able to receive values at the rate
//! they are sent. Because one receiver is stalled, the channel starts to fill
//! up.