about summary refs log tree commit diff
path: root/compiler/rustc_thread_pool
diff options
context:
space:
mode:
authorbinarycat <binarycat@envs.net>2025-07-24 12:37:46 -0500
committerbinarycat <binarycat@envs.net>2025-07-24 12:37:46 -0500
commita73d7e3ab9cc29cb427c1463d1a02b89dd7728b6 (patch)
tree2116eaaa1c7c946b7f51b0dcf9b989b4f3d0bb1f /compiler/rustc_thread_pool
parentbd85df192d07660511b711cd7d4cae5b5a85577a (diff)
downloadrust-a73d7e3ab9cc29cb427c1463d1a02b89dd7728b6.tar.gz
rust-a73d7e3ab9cc29cb427c1463d1a02b89dd7728b6.zip
fix up issues with internal compiler docs revealed by stricter lint
Diffstat (limited to 'compiler/rustc_thread_pool')
-rw-r--r--compiler/rustc_thread_pool/src/sleep/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_thread_pool/src/sleep/mod.rs b/compiler/rustc_thread_pool/src/sleep/mod.rs
index 31bf7184b42..aa666609214 100644
--- a/compiler/rustc_thread_pool/src/sleep/mod.rs
+++ b/compiler/rustc_thread_pool/src/sleep/mod.rs
@@ -44,7 +44,7 @@ impl SleepData {
 /// jobs are published, and it either blocks threads or wakes them in response to these
 /// events. See the [`README.md`] in this module for more details.
 ///
-/// [`README.md`] README.md
+/// [`README.md`]: README.md
 pub(super) struct Sleep {
     /// One "sleep state" per worker. Used to track if a worker is sleeping and to have
     /// them block.