about summary refs log tree commit diff
path: root/compiler/rustc_thread_pool/src/spawn/mod.rs
diff options
context:
space:
mode:
authorCelina G. Val <celinval@amazon.com>2025-06-11 11:45:06 -0700
committerCelina G. Val <celinval@amazon.com>2025-06-11 12:26:42 -0700
commit4aa62ea9e9015621969a0f505abf7a6894e99e9e (patch)
tree0fee7d64957aef4f6634319edc073b4557f747f0 /compiler/rustc_thread_pool/src/spawn/mod.rs
parent0b9b1df0064396708a5e5ca27fd010ae3ad3a305 (diff)
downloadrust-4aa62ea9e9015621969a0f505abf7a6894e99e9e.tar.gz
rust-4aa62ea9e9015621969a0f505abf7a6894e99e9e.zip
Use `rustc_thread_pool` instead of `rustc-rayon-core`
Diffstat (limited to 'compiler/rustc_thread_pool/src/spawn/mod.rs')
-rw-r--r--compiler/rustc_thread_pool/src/spawn/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_thread_pool/src/spawn/mod.rs b/compiler/rustc_thread_pool/src/spawn/mod.rs
index f1679a98234..92b89ed5948 100644
--- a/compiler/rustc_thread_pool/src/spawn/mod.rs
+++ b/compiler/rustc_thread_pool/src/spawn/mod.rs
@@ -50,7 +50,7 @@ use crate::unwind;
 /// This code creates a Rayon task that increments a global counter.
 ///
 /// ```rust
-/// # use rayon_core as rayon;
+/// # use rustc_thred_pool as rayon;
 /// use std::sync::atomic::{AtomicUsize, Ordering, ATOMIC_USIZE_INIT};
 ///
 /// static GLOBAL_COUNTER: AtomicUsize = ATOMIC_USIZE_INIT;