summaryrefslogtreecommitdiffstats
path: root/tokio-threadpool/src/blocking.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio-threadpool/src/blocking.rs')
-rw-r--r--tokio-threadpool/src/blocking.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tokio-threadpool/src/blocking.rs b/tokio-threadpool/src/blocking.rs
index c78d25d9..c224f9e0 100644
--- a/tokio-threadpool/src/blocking.rs
+++ b/tokio-threadpool/src/blocking.rs
@@ -62,7 +62,7 @@ pub struct BlockingError {
/// ideal as it requires bidirectional message passing as well as a channel to
/// communicate which adds a level of buffering.
///
-/// Instead, `blocking` hands off the responsiblity of processing the work queue
+/// Instead, `blocking` hands off the responsibility of processing the work queue
/// to another thread. This hand off is light compared to a channel and does not
/// require buffering.
///