We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 994ed42 commit d21c0d1Copy full SHA for d21c0d1
book/src/08_futures/02_spawn.md
@@ -112,7 +112,7 @@ pub async fn work() {
112
113
### `std::thread::spawn` vs `tokio::spawn`
114
115
-You can think of `tokio::spawn` as the asynchronous sibling of `std::spawn::thread`.
+You can think of `tokio::spawn` as the asynchronous sibling of `std::thread::spawn`.
116
117
Notice a key difference: with `std::thread::spawn`, you're delegating control to the OS scheduler.
118
You're not in control of how threads are scheduled.
0 commit comments