about summary refs log tree commit diff
path: root/library/std/src
diff options
context:
space:
mode:
authorJonathan Behrens <fintelia@gmail.com>2023-10-29 19:11:18 -0700
committerJonathan Behrens <fintelia@gmail.com>2023-10-29 19:11:18 -0700
commitbc058b6f45191a9c5af37856c3f5a4d4b2efec77 (patch)
tree40d6bdeb11c79d281efbcbbd2ac49302064e58c1 /library/std/src
parentd6337e65683ea982006ebfb4cf4881b1d3fe5aad (diff)
downloadrust-bc058b6f45191a9c5af37856c3f5a4d4b2efec77.tar.gz
rust-bc058b6f45191a9c5af37856c3f5a4d4b2efec77.zip
Add tracking issue
Diffstat (limited to 'library/std/src')
-rw-r--r--library/std/src/io/mod.rs2
1 files changed, 1 insertions, 1 deletions
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(())