We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3113b6b commit 7ae852eCopy full SHA for 7ae852e
1 file changed
library/std/src/io/mod.rs
@@ -1698,7 +1698,7 @@ pub trait Seek {
1698
/// f.read_to_string(&mut buf).unwrap();
1699
/// assert_eq!(&buf, hello);
1700
/// ```
1701
- #[unstable(feature = "seek_rewind", issue = "none")]
+ #[unstable(feature = "seek_rewind", issue = "85149")]
1702
fn rewind(&mut self) -> Result<()> {
1703
self.seek(SeekFrom::Start(0))?;
1704
Ok(())
0 commit comments