diff --git a/src/libcore/ptr.rs b/src/libcore/ptr.rs index befab1b3669b3..2ad38de72b1b9 100644 --- a/src/libcore/ptr.rs +++ b/src/libcore/ptr.rs @@ -377,7 +377,7 @@ impl *const T { /// ptr = ptr.wrapping_offset(step); /// } /// ``` - #[unstable(feature = "ptr_wrapping_offset", issue = "0")] + #[unstable(feature = "ptr_wrapping_offset", issue = "37570")] #[inline] pub fn wrapping_offset(self, count: isize) -> *const T where T: Sized { unsafe { @@ -501,7 +501,7 @@ impl *mut T { /// } /// assert_eq!(&data, &[0, 2, 0, 4, 0]); /// ``` - #[unstable(feature = "ptr_wrapping_offset", issue = "0")] + #[unstable(feature = "ptr_wrapping_offset", issue = "37570")] #[inline] pub fn wrapping_offset(self, count: isize) -> *mut T where T: Sized { unsafe {