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
230
230
/// buff.set_position(6);
231
231
/// assert_eq!(buff.remaining(), &[]);
232
232
/// ```
233
- #[ unstable( feature = "cursor_remaining" , issue = "none " ) ]
233
+ #[ unstable( feature = "cursor_remaining" , issue = "86369 " ) ]
234
234
pub fn remaining ( & self ) -> & [ u8 ] {
235
235
let len = self . pos . min ( self . inner . as_ref ( ) . len ( ) as u64 ) ;
236
236
& self . inner . as_ref ( ) [ ( len as usize ) ..]
@@ -255,7 +255,7 @@ where
255
255
/// buff.set_position(10);
256
256
/// assert!(buff.is_empty());
257
257
/// ```
258
- #[ unstable( feature = "cursor_remaining" , issue = "none " ) ]
258
+ #[ unstable( feature = "cursor_remaining" , issue = "86369 " ) ]
259
259
pub fn is_empty ( & self ) -> bool {
260
260
self . pos >= self . inner . as_ref ( ) . len ( ) as u64
261
261
}
You can’t perform that action at this time.
0 commit comments