File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -230,7 +230,7 @@ where
230230 /// buff.set_position(6);
231231 /// assert_eq!(buff.remaining(), &[]);
232232 /// ```
233- #[ unstable( feature = "cursor_remaining" , issue = "none " ) ]
233+ #[ unstable( feature = "cursor_remaining" , issue = "86369 " ) ]
234234 pub fn remaining ( & self ) -> & [ u8 ] {
235235 let len = self . pos . min ( self . inner . as_ref ( ) . len ( ) as u64 ) ;
236236 & self . inner . as_ref ( ) [ ( len as usize ) ..]
@@ -255,7 +255,7 @@ where
255255 /// buff.set_position(10);
256256 /// assert!(buff.is_empty());
257257 /// ```
258- #[ unstable( feature = "cursor_remaining" , issue = "none " ) ]
258+ #[ unstable( feature = "cursor_remaining" , issue = "86369 " ) ]
259259 pub fn is_empty ( & self ) -> bool {
260260 self . pos >= self . inner . as_ref ( ) . len ( ) as u64
261261 }
You can’t perform that action at this time.
0 commit comments