summaryrefslogtreecommitdiffstats
path: root/tokio/src/lib.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/lib.rs
parentdc356a41589a6129ec5db375e0ab9baee8612b83 (diff)
doc: misc API documentation fixes (#1834)
Diffstat (limited to 'tokio/src/lib.rs')
-rw-r--r--tokio/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tokio/src/lib.rs b/tokio/src/lib.rs
index dbe44c65..3b8e37bf 100644
--- a/tokio/src/lib.rs
+++ b/tokio/src/lib.rs
@@ -116,13 +116,13 @@
//! Finally, Tokio provides a _runtime_ for executing asynchronous tasks. Most
//! applications can use the [`#[tokio::main]`][main] macro to run their code on the
//! Tokio runtime. In use-cases where manual control over the runtime is
-//! required, the [`tokio::runtime`] module provides APIs for configuring and
+//! required, the [`tokio::runtime`] module provides APIs for configuring and
//! managing runtimes.
//!
//! Using the runtime requires the "rt-core" or "rt-threaded" feature flags, to
//! enable the basic [single-threaded scheduler][rt-core] and the [thread-pool
//! scheduler][rt-threaded], respectively. See the [`runtime` module
-//! documentation][rt-features] for details. In addition, the "macros" feature
+//! documentation][rt-features] for details. In addition, the "macros" feature
//! flag enables the `#[tokio::main]` and `#[tokio::test]` attributes.
//!
//! [main]: attr.main.html