diff --git a/tokio/src/runtime/handle.rs b/tokio/src/runtime/handle.rs index 9f1a4589091..4f1b4c5795a 100644 --- a/tokio/src/runtime/handle.rs +++ b/tokio/src/runtime/handle.rs @@ -205,7 +205,7 @@ impl Handle { /// Run a future to completion on this `Handle`'s associated `Runtime`. /// - /// This runs the given future on the runtime, blocking until it is + /// This runs the given future on the current thread, blocking until it is /// complete, and yielding its resolved result. Any tasks or timers which /// the future spawns internally will be executed on the runtime. /// diff --git a/tokio/src/runtime/mod.rs b/tokio/src/runtime/mod.rs index 2075d487720..3ad4c1890d9 100644 --- a/tokio/src/runtime/mod.rs +++ b/tokio/src/runtime/mod.rs @@ -405,7 +405,7 @@ cfg_rt! { /// Run a future to completion on the Tokio runtime. This is the /// runtime's entry point. /// - /// This runs the given future on the runtime, blocking until it is + /// This runs the given future on the current thread, blocking until it is /// complete, and yielding its resolved result. Any tasks or timers /// which the future spawns internally will be executed on the runtime. ///