From de5eee151b994ba68ef5055f606a69b4f0cd02dc Mon Sep 17 00:00:00 2001 From: Daniel Mangum <31777345+hasheddan@users.noreply.github.com> Date: Sun, 29 May 2022 10:39:26 -0500 Subject: [PATCH] Fix minor typo in enter doc comment (#2604) Fixes a minor typo by changing "a tasks" to "a task" in the documentation comment for enter. Signed-off-by: hasheddan --- futures-executor/src/enter.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/futures-executor/src/enter.rs b/futures-executor/src/enter.rs index 5895a9efb6..cb58c30bb7 100644 --- a/futures-executor/src/enter.rs +++ b/futures-executor/src/enter.rs @@ -34,7 +34,7 @@ impl std::error::Error for EnterError {} /// executor. /// /// Executor implementations should call this function before beginning to -/// execute a tasks, and drop the returned [`Enter`](Enter) value after +/// execute a task, and drop the returned [`Enter`](Enter) value after /// completing task execution: /// /// ```