Skip to content

Commit f76eda3

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 e114d62 + cf529c7 commit f76eda3

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

library/core/src/slice/mod.rs

+1-1
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,
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# `slice_check_range`
2+
3+
The tracking issue for this feature is: [#76393]
4+
5+
------------------------
6+
7+
This adds [`slice::check_range`].
8+
9+
[#76393]: https://github.com/rust-lang/rust/issues/76393
10+
[`slice::check_range`]: https://doc.rust-lang.org/nightly/std/primitive.slice.html#method.check_range

0 commit comments

Comments
 (0)