summaryrefslogtreecommitdiffstats
path: root/tokio
diff options
context:
space:
mode:
authornickelc <constantin.nickel@gmail.com>2020-10-19 15:33:10 +0200
committerGitHub <noreply@github.com>2020-10-19 15:33:10 +0200
commitcfd643d6911e6b80adae688bbd53e57d7bdb93f2 (patch)
tree5ba458e30d1d54eeb7938d5d47f305039be68155 /tokio
parent8d17261a4b0e83487f6503816c45376bd82eb41d (diff)
docs: fix typo in runtime module documentation (#2992)
Diffstat (limited to 'tokio')
-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 d7958d60..25b20de8 100644
--- a/tokio/src/runtime/mod.rs
+++ b/tokio/src/runtime/mod.rs
@@ -132,7 +132,7 @@
//!
//! The current-thread scheduler provides a _single-threaded_ future executor.
//! All tasks will be created and executed on the current thread. This requires
-//! the `rt-core` feature flag.
+//! the `rt` feature flag.
//! ```
//! use tokio::runtime;
//!