Skip to content

Commit 238cbd1

Browse files
committed
Adjust documentation for slice_check_range
1 parent 872ffae commit 238cbd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/slice/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ impl<T> [T] {
399399
///
400400
/// [`Index::index`]: ops::Index::index
401401
#[track_caller]
402-
#[unstable(feature = "slice_check_range", issue = "none")]
402+
#[unstable(feature = "slice_check_range", issue = "76393")]
403403
pub fn check_range<R: RangeBounds<usize>>(&self, range: R) -> Range<usize> {
404404
let start = match range.start_bound() {
405405
Bound::Included(&start) => start,

0 commit comments

Comments
 (0)