From ab595d08253dd7ee0422144f8dafffa382700976 Mon Sep 17 00:00:00 2001 From: Nicholas Young Date: Thu, 21 Feb 2019 10:28:44 -0700 Subject: [PATCH] threadpool: fix typo in documentation (#915) --- tokio-threadpool/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio-threadpool/src/lib.rs b/tokio-threadpool/src/lib.rs index 45ee6626a..94d86700e 100644 --- a/tokio-threadpool/src/lib.rs +++ b/tokio-threadpool/src/lib.rs @@ -9,7 +9,7 @@ //! I/O. Usually, users will not create a `ThreadPool` instance directly, but //! will use one via a [`runtime`]. //! -//! The `TheadPool` structure manages two sets of threads: +//! The `ThreadPool` structure manages two sets of threads: //! //! * Worker threads. //! * Backup threads.