Skip to content

Commit 7b8c96d

Browse files
committed
Auto merge of rust-lang#76395 - dylni:adjust-documentation-for-slice-check-range, r=jyn514
Adjust documentation for slice_check_range Adjust documentation for rust-lang#76393.
2 parents 4a05cb3 + 238cbd1 commit 7b8c96d

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
@@ -398,7 +398,7 @@ impl<T> [T] {
398398
///
399399
/// [`Index::index`]: ops::Index::index
400400
#[track_caller]
401-
#[unstable(feature = "slice_check_range", issue = "none")]
401+
#[unstable(feature = "slice_check_range", issue = "76393")]
402402
pub fn check_range<R: RangeBounds<usize>>(&self, range: R) -> Range<usize> {
403403
let start = match range.start_bound() {
404404
Bound::Included(&start) => start,

0 commit comments

Comments
 (0)