summaryrefslogtreecommitdiffstats
path: root/tokio/src/sync/mod.rs
diff options
context:
space:
mode:
authorMatt Butcher <matt.butcher@microsoft.com>2020-02-20 09:38:28 -0700
committerGitHub <noreply@github.com>2020-02-20 11:38:28 -0500
commit7b8ce356c31aa8887ba4aa84fbceb3d64114785c (patch)
tree83ba3c8dbae67dffbf47984736cc59b2b0521e04 /tokio/src/sync/mod.rs
parent0605abacfc3b1b20f1eb02a182ed411ac3f2bfe6 (diff)
sync: fixed a small typo in sync docs (#2262)
Signed-off-by: Matt Butcher <matt.butcher@microsoft.com>
Diffstat (limited to 'tokio/src/sync/mod.rs')
-rw-r--r--tokio/src/sync/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tokio/src/sync/mod.rs b/tokio/src/sync/mod.rs
index ff72c521..7f72bc90 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.