Skip to content

Commit 7ae852e

Browse files
committed
io::Seek::rewind: Set tracking issue
Signed-off-by: Ian Jackson <[email protected]>
1 parent 3113b6b commit 7ae852e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/std/src/io/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1698,7 +1698,7 @@ pub trait Seek {
16981698
/// f.read_to_string(&mut buf).unwrap();
16991699
/// assert_eq!(&buf, hello);
17001700
/// ```
1701-
#[unstable(feature = "seek_rewind", issue = "none")]
1701+
#[unstable(feature = "seek_rewind", issue = "85149")]
17021702
fn rewind(&mut self) -> Result<()> {
17031703
self.seek(SeekFrom::Start(0))?;
17041704
Ok(())

0 commit comments

Comments
 (0)