From 212e91a3568b3f65fb504ce23ffe31d8d00bbb90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Meier?= Date: Wed, 16 Jun 2021 17:25:47 +0200 Subject: [PATCH] Update tracking issue --- library/std/src/io/cursor.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/std/src/io/cursor.rs b/library/std/src/io/cursor.rs index c0cb75a0eaef..db720531e3ab 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 }