From 74d33a1b2f69bfcb4f00befd4f9f5ec9649e70de Mon Sep 17 00:00:00 2001 From: Vlad-Shcherbina Date: Sat, 14 Dec 2019 21:17:36 +0300 Subject: [PATCH] Fix typo in sync documentation (#1942) --- 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 943f8f112..df31f8df1 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.