aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/handle.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/handle.rs')
-rw-r--r--src/runtime/handle.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/runtime/handle.rs b/src/runtime/handle.rs
index da47ecb..c5dc65f 100644
--- a/src/runtime/handle.rs
+++ b/src/runtime/handle.rs
@@ -118,9 +118,9 @@ impl Handle {
/// thread pool. The thread pool is then responsible for polling the future
/// until it completes.
///
- /// You do not have to `.await` the returned `JoinHandle` to make the
- /// provided future start execution. It will start running in the background
- /// immediately when `spawn` is called.
+ /// The provided future will start running in the background immediately
+ /// when `spawn` is called, even if you don't await the returned
+ /// `JoinHandle`.
///
/// See [module level][mod] documentation for more details.
///