Skip to content

Commit 6f70a11

Browse files
committed
range_is_empty tracking issue is #48111
1 parent b5cb393 commit 6f70a11

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libcore/ops/range.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ impl<Idx: PartialOrd<Idx>> Range<Idx> {
124124
/// assert!( (3..3).is_empty());
125125
/// assert!( (3..2).is_empty());
126126
/// ```
127-
#[unstable(feature = "range_is_empty", reason = "recently added", issue = "123456789")]
127+
#[unstable(feature = "range_is_empty", reason = "recently added", issue = "48111")]
128128
pub fn is_empty(&self) -> bool {
129129
!(self.start < self.end)
130130
}
@@ -347,7 +347,7 @@ impl<Idx: PartialOrd<Idx>> RangeInclusive<Idx> {
347347
/// // Precise field values are unspecified here
348348
/// assert!(r.is_empty());
349349
/// ```
350-
#[unstable(feature = "range_is_empty", reason = "recently added", issue = "123456789")]
350+
#[unstable(feature = "range_is_empty", reason = "recently added", issue = "48111")]
351351
pub fn is_empty(&self) -> bool {
352352
!(self.start <= self.end)
353353
}

0 commit comments

Comments
 (0)