about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--library/core/src/ptr/mut_ptr.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/core/src/ptr/mut_ptr.rs b/library/core/src/ptr/mut_ptr.rs
index 66e7ac0d3c4..dc63ca809f1 100644
--- a/library/core/src/ptr/mut_ptr.rs
+++ b/library/core/src/ptr/mut_ptr.rs
@@ -1382,7 +1382,7 @@ impl<T> *mut [T] {
     /// ```
     #[inline(always)]
     #[track_caller]
-    #[unstable(feature = "raw_slice_split", issue = "71146")]
+    #[unstable(feature = "raw_slice_split", issue = "95595")]
     pub fn split_at_mut(self, mid: usize) -> (*mut [T], *mut [T]) {
         assert!(mid <= self.len());
         // SAFETY: `[ptr; mid]` and `[mid; len]` are inside `self`, which
@@ -1426,7 +1426,7 @@ impl<T> *mut [T] {
     /// assert_eq!(v, [1, 2, 3, 4, 5, 6]);
     /// ```
     #[inline(always)]
-    #[unstable(feature = "raw_slice_split", issue = "71146")]
+    #[unstable(feature = "raw_slice_split", issue = "95595")]
     pub unsafe fn split_at_mut_unchecked(self, mid: usize) -> (*mut [T], *mut [T]) {
         let len = self.len();
         let ptr = self.as_mut_ptr();