about summary refs log tree commit diff
path: root/library/std/src/io
diff options
context:
space:
mode:
authorSören Meier <soeren@s-me.ch>2021-06-16 17:25:47 +0200
committerGitHub <noreply@github.com>2021-06-16 17:25:47 +0200
commit212e91a3568b3f65fb504ce23ffe31d8d00bbb90 (patch)
treea4bd15960cfa9488f8149eb0e2c1972a88b5fe19 /library/std/src/io
parent08d44c2cc314aea420a2945ad16528992fb5b666 (diff)
downloadrust-212e91a3568b3f65fb504ce23ffe31d8d00bbb90.tar.gz
rust-212e91a3568b3f65fb504ce23ffe31d8d00bbb90.zip
Update tracking issue
Diffstat (limited to 'library/std/src/io')
-rw-r--r--library/std/src/io/cursor.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/std/src/io/cursor.rs b/library/std/src/io/cursor.rs
index c0cb75a0eae..db720531e3a 100644
--- a/library/std/src/io/cursor.rs
+++ b/library/std/src/io/cursor.rs
@@ -230,7 +230,7 @@ where
     /// buff.set_position(6);
     /// assert_eq!(buff.remaining(), &[]);
     /// ```
-    #[unstable(feature = "cursor_remaining", issue = "none")]
+    #[unstable(feature = "cursor_remaining", issue = "86369")]
     pub fn remaining(&self) -> &[u8] {
         let len = self.pos.min(self.inner.as_ref().len() as u64);
         &self.inner.as_ref()[(len as usize)..]
@@ -255,7 +255,7 @@ where
     /// buff.set_position(10);
     /// assert!(buff.is_empty());
     /// ```
-    #[unstable(feature = "cursor_remaining", issue = "none")]
+    #[unstable(feature = "cursor_remaining", issue = "86369")]
     pub fn is_empty(&self) -> bool {
         self.pos >= self.inner.as_ref().len() as u64
     }