Skip to content

Commit f1b69b0

Browse files
committed
Add slice_ptr_range tracking issue number.
1 parent 4936f96 commit f1b69b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libcore/slice/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ impl<T> [T] {
434434
/// ```
435435
///
436436
/// [`as_ptr`]: #method.as_ptr
437-
#[unstable(feature = "slice_ptr_range", issue = "0")]
437+
#[unstable(feature = "slice_ptr_range", issue = "65807")]
438438
#[inline]
439439
pub fn as_ptr_range(&self) -> Range<*const T> {
440440
let start = self.as_ptr();
@@ -458,7 +458,7 @@ impl<T> [T] {
458458
/// common in C++.
459459
///
460460
/// [`as_mut_ptr`]: #method.as_mut_ptr
461-
#[unstable(feature = "slice_ptr_range", issue = "0")]
461+
#[unstable(feature = "slice_ptr_range", issue = "65807")]
462462
#[inline]
463463
pub fn as_mut_ptr_range(&mut self) -> Range<*mut T> {
464464
let start = self.as_mut_ptr();

0 commit comments

Comments
 (0)