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 7ec70e9 commit 2e071c2Copy full SHA for 2e071c2
rayon-core/src/spawn/mod.rs
@@ -4,8 +4,8 @@ use crate::unwind;
4
use std::mem;
5
use std::sync::Arc;
6
7
-/// Fires off a task into the Rayon threadpool in the "static" or
8
-/// "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
9
/// tied to the current stack frame, and hence it cannot hold any
10
/// references other than those with `'static` lifetime. If you want
11
/// to spawn a task that references stack data, use [the `scope()`
0 commit comments