Skip to content

Commit 1b3ecbc

Browse files
committed
Stabilise into_inner
1 parent edad2ef commit 1b3ecbc

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/libcore/ops/range.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -400,11 +400,9 @@ impl<Idx> RangeInclusive<Idx> {
400400
/// # Examples
401401
///
402402
/// ```
403-
/// #![feature(inclusive_range_methods)]
404-
///
405403
/// assert_eq!((3..=5).into_inner(), (3, 5));
406404
/// ```
407-
#[unstable(feature = "inclusive_range_methods", issue = "49022")]
405+
#[stable(feature = "inclusive_range_methods", since = "1.27.0")]
408406
#[inline]
409407
pub fn into_inner(self) -> (Idx, Idx) {
410408
(self.start, self.end)

0 commit comments

Comments
 (0)