From 06fb36c92ea0d92d93361badde0cae5aab763d43 Mon Sep 17 00:00:00 2001 From: "Kurt Heiritz (pseudo)" Date: Fri, 27 Jun 2025 16:26:53 +0530 Subject: [PATCH] Update poison.rs to fix the typo (sys->sync) --- library/std/src/sync/poison.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/src/sync/poison.rs b/library/std/src/sync/poison.rs index cc1d0b30152a1..571f0d14248e1 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 //!