diff --git a/library/std/src/io/mod.rs b/library/std/src/io/mod.rs index cebed3a7c18..9f43379aff7 100644 --- a/library/std/src/io/mod.rs +++ b/library/std/src/io/mod.rs @@ -1698,7 +1698,7 @@ pub trait Seek { /// f.read_to_string(&mut buf).unwrap(); /// assert_eq!(&buf, hello); /// ``` - #[unstable(feature = "seek_rewind", issue = "none")] + #[unstable(feature = "seek_rewind", issue = "85149")] fn rewind(&mut self) -> Result<()> { self.seek(SeekFrom::Start(0))?; Ok(())