Skip to content

Commit edb0697

Browse files
committed
Fix incorrect tracking issue link for read_le/read_be
The unstable attribute on Read::read_le and Read::read_be pointed to issue 156983, which is the implementation PR. The tracking issue is 156984, so the docs on doc.rust-lang.org linked to the wrong page. Closes #158721
1 parent c397dae commit edb0697

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

library/std/src/io/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1294,7 +1294,7 @@ pub trait Read {
12941294
/// Ok(())
12951295
/// }
12961296
/// ```
1297-
#[unstable(feature = "read_le", issue = "156983")]
1297+
#[unstable(feature = "read_le", issue = "156984")]
12981298
#[inline]
12991299
fn read_le<T: FromEndianBytes>(&mut self) -> Result<T>
13001300
where
@@ -1327,7 +1327,7 @@ pub trait Read {
13271327
/// Ok(())
13281328
/// }
13291329
/// ```
1330-
#[unstable(feature = "read_le", issue = "156983")]
1330+
#[unstable(feature = "read_le", issue = "156984")]
13311331
#[inline]
13321332
fn read_be<T: FromEndianBytes>(&mut self) -> Result<T>
13331333
where

0 commit comments

Comments
 (0)