about summary refs log tree commit diff
path: root/library/std/src/sync
diff options
context:
space:
mode:
authorConnor Tsui <connor.tsui20@gmail.com>2025-08-03 22:28:04 +0200
committerConnor Tsui <connor.tsui20@gmail.com>2025-08-03 22:57:07 +0200
commitcf3865f7a540706cb4ae1537b8f37d136e47da4e (patch)
tree7d3b753f408ce0f3dd017774cf3c6b53dc7bf191 /library/std/src/sync
parentf34ba774c78ea32b7c40598b8ad23e75cdac42a6 (diff)
downloadrust-cf3865f7a540706cb4ae1537b8f37d136e47da4e.tar.gz
rust-cf3865f7a540706cb4ae1537b8f37d136e47da4e.zip
fix broken doc section link in `poison.rs`
Diffstat (limited to 'library/std/src/sync')
-rw-r--r--library/std/src/sync/poison.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/sync/poison.rs b/library/std/src/sync/poison.rs
index d5adc9e29b5..31889dcc10f 100644
--- a/library/std/src/sync/poison.rs
+++ b/library/std/src/sync/poison.rs
@@ -11,7 +11,7 @@
 //!
 //! The specifics of how this "poisoned" state affects other threads and whether
 //! the panics are recognized reliably or on a best-effort basis depend on the
-//! primitive. See [#Overview] below.
+//! primitive. See [Overview](#overview) below.
 //!
 //! For the alternative implementations that do not employ poisoning,
 //! see [`std::sync::nonpoison`].