From 27935a6a54a417dfea0c6b2f79c28ea255c67df0 Mon Sep 17 00:00:00 2001 From: Sylvester Kpei Date: Fri, 3 Jul 2026 19:47:41 -0700 Subject: [PATCH] Fix incorrect tracking issue link for read_le/read_be The unstable attribute on Read::read_le and Read::read_be pointed to the implementation PR rather than the tracking issue, so the docs on doc.rust-lang.org linked to the wrong page. --- library/std/src/io/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/std/src/io/mod.rs b/library/std/src/io/mod.rs index dc623a3e82c2c..6396be588c0ff 100644 --- a/library/std/src/io/mod.rs +++ b/library/std/src/io/mod.rs @@ -1294,7 +1294,7 @@ pub trait Read { /// Ok(()) /// } /// ``` - #[unstable(feature = "read_le", issue = "156983")] + #[unstable(feature = "read_le", issue = "156984")] #[inline] fn read_le(&mut self) -> Result where @@ -1327,7 +1327,7 @@ pub trait Read { /// Ok(()) /// } /// ``` - #[unstable(feature = "read_le", issue = "156983")] + #[unstable(feature = "read_le", issue = "156984")] #[inline] fn read_be(&mut self) -> Result where