summaryrefslogtreecommitdiffstats
path: root/tokio/src/sync/mod.rs
diff options
context:
space:
mode:
authorVlad-Shcherbina <vlad.shcherbina@gmail.com>2019-12-14 21:17:36 +0300
committerIvan Petkov <ivanppetkov@gmail.com>2019-12-14 10:17:36 -0800
commit74d33a1b2f69bfcb4f00befd4f9f5ec9649e70de (patch)
treecae0a5604e27e3b247d01ebdad5048102303e9f6 /tokio/src/sync/mod.rs
parent69885e214c531067d0d15f3b3605ca7ff3a611f2 (diff)
Fix typo in sync documentation (#1942)
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 943f8f11..df31f8df 100644
--- a/tokio/src/sync/mod.rs
+++ b/tokio/src/sync/mod.rs
@@ -5,7 +5,7 @@
//! This module is enabled with the **`sync`** feature flag.
//!
//! Tasks sometimes need to communicate with each other. This module contains
-//! two basic abstractions for doing so:
+//! basic abstractions for doing so:
//!
//! - [oneshot](oneshot/index.html), a way of sending a single value
//! from one task to another.