diff --git a/rayon-core/src/spawn/mod.rs b/rayon-core/src/spawn/mod.rs index 1aa9edb3c..22c58981c 100644 --- a/rayon-core/src/spawn/mod.rs +++ b/rayon-core/src/spawn/mod.rs @@ -4,8 +4,8 @@ use crate::unwind; use std::mem; use std::sync::Arc; -/// Fires off a task into the Rayon threadpool in the "static" or -/// "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 /// tied to the current stack frame, and hence it cannot hold any /// references other than those with `'static` lifetime. If you want /// to spawn a task that references stack data, use [the `scope()`