From 7153ba06eefae260665a5450fa3e95c6b57a74a6 Mon Sep 17 00:00:00 2001 From: Luc Street Date: Mon, 25 Nov 2019 19:58:09 -0800 Subject: [PATCH] Fix typo in executor docs --- futures/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/futures/src/lib.rs b/futures/src/lib.rs index 674ff74212..84e2a3f9e3 100644 --- a/futures/src/lib.rs +++ b/futures/src/lib.rs @@ -190,7 +190,7 @@ pub mod executor { //! handle a very large set of spawned tasks (which are much lighter weight //! than threads). Tasks spawned onto the pool with the //! [`spawn_ok()`](crate::executor::ThreadPool::spawn_ok) - //! function will run on ambiently on the created threads. + //! function will run ambiently on the created threads. //! //! # Spawning additional tasks //!