about summary refs log tree commit diff
path: root/library
diff options
context:
space:
mode:
authorJubilee <workingjubilee@gmail.com>2025-07-04 23:26:20 -0700
committerGitHub <noreply@github.com>2025-07-04 23:26:20 -0700
commit2f119daf4eb26fe73d8e5e651769977484f67328 (patch)
tree230a011d4d1dbd2f84c4b03ddc4303c024b1b619 /library
parent3b522384e4b6ffaabcfa6ab87486a92b9b7bde77 (diff)
parent06fb36c92ea0d92d93361badde0cae5aab763d43 (diff)
downloadrust-2f119daf4eb26fe73d8e5e651769977484f67328.tar.gz
rust-2f119daf4eb26fe73d8e5e651769977484f67328.zip
Rollup merge of #143086 - SciMind2460:patch-2, r=workingjubilee
Update poison.rs to fix the typo (sys->sync)
Diffstat (limited to 'library')
-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 cc1d0b30152..571f0d14248 100644
--- a/library/std/src/sync/poison.rs
+++ b/library/std/src/sync/poison.rs
@@ -13,7 +13,7 @@
 //! depend on the primitive. See [#Overview] bellow.
 //!
 //! For the alternative implementations that do not employ poisoning,
-//! see `std::sys::nonpoisoning`.
+//! see `std::sync::nonpoisoning`.
 //!
 //! # Overview
 //!