From 7b8ce356c31aa8887ba4aa84fbceb3d64114785c Mon Sep 17 00:00:00 2001 From: Matt Butcher Date: Thu, 20 Feb 2020 09:38:28 -0700 Subject: [PATCH] sync: fixed a small typo in sync docs (#2262) Signed-off-by: Matt Butcher --- tokio/src/sync/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio/src/sync/mod.rs b/tokio/src/sync/mod.rs index ff72c5213..7f72bc90c 100644 --- a/tokio/src/sync/mod.rs +++ b/tokio/src/sync/mod.rs @@ -395,7 +395,7 @@ //! //! # State synchronization //! -//! The remainding synchronization primitives focus on synchronizing state. +//! The remaining synchronization primitives focus on synchronizing state. //! These are asynchronous equivalents to versions provided by `std`. They //! operate in a similar way as their `std` counterparts parts but will wait //! asynchronously instead of blocking the thread.