summaryrefslogtreecommitdiffstats
path: root/tokio/src/runtime/mod.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/runtime/mod.rs
parentdc356a41589a6129ec5db375e0ab9baee8612b83 (diff)
doc: misc API documentation fixes (#1834)
Diffstat (limited to 'tokio/src/runtime/mod.rs')
-rw-r--r--tokio/src/runtime/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tokio/src/runtime/mod.rs b/tokio/src/runtime/mod.rs
index 7225ea8d..45c2bd5e 100644
--- a/tokio/src/runtime/mod.rs
+++ b/tokio/src/runtime/mod.rs
@@ -304,7 +304,7 @@ impl Runtime {
/// [basic scheduler] is used instead.
///
/// If the threaded cheduler is selected, it will not spawn
- /// any worker threads until it needs to, i.e. tasks are scheduled to run.
+ /// any worker threads until it needs to, i.e. tasks are scheduled to run.
///
/// Most applications will not need to call this function directly. Instead,
/// they will use the [`#[tokio::main]` attribute][main]. When more complex