From bc058b6f45191a9c5af37856c3f5a4d4b2efec77 Mon Sep 17 00:00:00 2001 From: Jonathan Behrens Date: Sun, 29 Oct 2023 19:11:18 -0700 Subject: [PATCH] Add tracking issue --- library/std/src/io/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/src/io/mod.rs b/library/std/src/io/mod.rs index ba2c0e217de..9ee68a079bc 100644 --- a/library/std/src/io/mod.rs +++ b/library/std/src/io/mod.rs @@ -1978,7 +1978,7 @@ pub trait Seek { /// Ok(()) /// } /// ``` - #[unstable(feature = "seek_seek_relative", issue = "none")] + #[unstable(feature = "seek_seek_relative", issue = "117374")] fn seek_relative(&mut self, offset: i64) -> Result<()> { self.seek(SeekFrom::Current(offset))?; Ok(())