From 9f0b6d316694e88bfd0637f166ffc177789176b2 Mon Sep 17 00:00:00 2001 From: Max Bruckner Date: Fri, 31 Jul 2020 22:10:31 +0200 Subject: [PATCH] sync: suspectible -> susceptible (#2732) --- 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 cd62ffd5a..a64774ecb 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.