From 68b82f5721cbfa2076f53fa24961ee9273395b39 Mon Sep 17 00:00:00 2001 From: Thijs Vermeir Date: Fri, 4 May 2018 16:06:47 +0200 Subject: [PATCH] Fix typo in documentation (#341) --- tokio-threadpool/src/builder.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio-threadpool/src/builder.rs b/tokio-threadpool/src/builder.rs index 0e390fd72..6f09c2758 100644 --- a/tokio-threadpool/src/builder.rs +++ b/tokio-threadpool/src/builder.rs @@ -20,7 +20,7 @@ use futures2; /// Builds a thread pool with custom configuration values. /// -/// Methods can be chanined in order to set the configuration values. The thread +/// Methods can be chained in order to set the configuration values. The thread /// pool is constructed by calling [`build`]. /// /// New instances of `Builder` are obtained via [`Builder::new`].