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 6152a3f commit 382c2bbCopy full SHA for 382c2bb
rayon-core/src/spawn/mod.rs
@@ -5,8 +5,8 @@ use crate::unwind;
5
use std::mem;
6
use std::sync::Arc;
7
8
-/// Fires off a task into the Rayon threadpool in the "static" or
9
-/// "global" scope. Just like a standard thread, this task is not
+/// Puts the task into the Rayon threadpool's job queue in the "static"
+/// or "global" scope. Just like a standard thread, this task is not
10
/// tied to the current stack frame, and hence it cannot hold any
11
/// references other than those with `'static` lifetime. If you want
12
/// to spawn a task that references stack data, use [the `scope()`
0 commit comments