aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/runtime.rs
diff options
context:
space:
mode:
authorJeff Vander Stoep <jeffv@google.com>2023-02-06 09:15:26 +0100
committerJeff Vander Stoep <jeffv@google.com>2023-02-06 12:14:46 +0100
commita77df93fec1b865e952e7a931ea3cd129aca6a46 (patch)
treed585fc992b047e0d1fb217f44c39d241d2c81c72 /src/runtime/runtime.rs
parent67f287733f1d477619a50533f54676c7ffb41c25 (diff)
downloadtokio-a77df93fec1b865e952e7a931ea3cd129aca6a46.tar.gz
Upgrade tokio to 1.25.0
This project was upgraded with external_updater. Usage: tools/external_updater/updater.sh update rust/crates/tokio For more info, check https://cs.android.com/android/platform/superproject/+/master:tools/external_updater/README.md Test: TreeHugger Change-Id: Ibe4881eebae2509ecb442aa1c803461d9348eaa3
Diffstat (limited to 'src/runtime/runtime.rs')
-rw-r--r--src/runtime/runtime.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/runtime/runtime.rs b/src/runtime/runtime.rs
index 9ede0a7..1985673 100644
--- a/src/runtime/runtime.rs
+++ b/src/runtime/runtime.rs
@@ -163,9 +163,9 @@ impl Runtime {
/// 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.
///