File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ impl<Idx: PartialOrd<Idx>> Range<Idx> {
124
124
/// assert!( (3..3).is_empty());
125
125
/// assert!( (3..2).is_empty());
126
126
/// ```
127
- #[ unstable( feature = "range_is_empty" , reason = "recently added" , issue = "123456789 " ) ]
127
+ #[ unstable( feature = "range_is_empty" , reason = "recently added" , issue = "48111 " ) ]
128
128
pub fn is_empty ( & self ) -> bool {
129
129
!( self . start < self . end )
130
130
}
@@ -347,7 +347,7 @@ impl<Idx: PartialOrd<Idx>> RangeInclusive<Idx> {
347
347
/// // Precise field values are unspecified here
348
348
/// assert!(r.is_empty());
349
349
/// ```
350
- #[ unstable( feature = "range_is_empty" , reason = "recently added" , issue = "123456789 " ) ]
350
+ #[ unstable( feature = "range_is_empty" , reason = "recently added" , issue = "48111 " ) ]
351
351
pub fn is_empty ( & self ) -> bool {
352
352
!( self . start <= self . end )
353
353
}
You can’t perform that action at this time.
0 commit comments