From af2d46d9b9242f2764e742731f9e031be0c53252 Mon Sep 17 00:00:00 2001 From: Alfie John Date: Tue, 7 Jan 2020 13:29:30 +1100 Subject: [PATCH] Tiny grammar fix --- src/task/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/task/mod.rs b/src/task/mod.rs index a73d5d240..f738fca40 100644 --- a/src/task/mod.rs +++ b/src/task/mod.rs @@ -37,7 +37,7 @@ //! outlive its parent (the task that spawned it), unless this parent is the root task. //! //! The root task can also wait on the completion of the child task; a call to [`spawn`] produces a -//! [`JoinHandle`], which provides implements `Future` and can be `await`ed: +//! [`JoinHandle`], which implements `Future` and can be `await`ed: //! //! ``` //! use async_std::task;