summaryrefslogtreecommitdiffstats
path: root/tokio/src/task/blocking.rs
diff options
context:
space:
mode:
authorOleg Nosov <olegnosov1@gmail.com>2019-11-27 23:05:42 +0300
committerCarl Lerche <me@carllerche.com>2019-11-27 12:05:42 -0800
commit942feab040e28d1e1547012a0fb81212299e6596 (patch)
tree190d456e68524115414c8c470970e94eaccacc96 /tokio/src/task/blocking.rs
parentdc356a41589a6129ec5db375e0ab9baee8612b83 (diff)
doc: misc API documentation fixes (#1834)
Diffstat (limited to 'tokio/src/task/blocking.rs')
-rw-r--r--tokio/src/task/blocking.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tokio/src/task/blocking.rs b/tokio/src/task/blocking.rs
index 1b79ee17..71fbbe72 100644
--- a/tokio/src/task/blocking.rs
+++ b/tokio/src/task/blocking.rs
@@ -5,7 +5,7 @@ cfg_rt_threaded! {
///
/// In general, issuing a blocking call or performing a lot of compute in a
/// future without yielding is not okay, as it may prevent the executor from
- /// driving other futures forward. If you run a closure through this method,
+ /// driving other futures forward. If you run a closure through this method,
/// the current executor thread will relegate all its executor duties to another
/// (possibly new) thread, and only then poll the task. Note that this requires
/// additional synchronization.