@@ -1468,7 +1468,7 @@ pub trait IndexMut<Idx: ?Sized>: Index<Idx> {
1468
1468
1469
1469
/// An unbounded range.
1470
1470
#[ derive( Copy , Clone , PartialEq , Eq ) ]
1471
- #[ cfg_attr( stage0, lang = "range_full" ) ] // TODO remove attribute after next snapshot
1471
+ #[ cfg_attr( stage0, lang = "range_full" ) ] // FIXME remove attribute after next snapshot
1472
1472
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1473
1473
pub struct RangeFull ;
1474
1474
@@ -1481,7 +1481,7 @@ impl fmt::Debug for RangeFull {
1481
1481
1482
1482
/// A (half-open) range which is bounded at both ends.
1483
1483
#[ derive( Clone , PartialEq , Eq ) ]
1484
- #[ cfg_attr( stage0, lang = "range" ) ] // TODO remove attribute after next snapshot
1484
+ #[ cfg_attr( stage0, lang = "range" ) ] // FIXME remove attribute after next snapshot
1485
1485
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1486
1486
pub struct Range < Idx > {
1487
1487
/// The lower bound of the range (inclusive).
@@ -1501,7 +1501,7 @@ impl<Idx: fmt::Debug> fmt::Debug for Range<Idx> {
1501
1501
1502
1502
/// A range which is only bounded below.
1503
1503
#[ derive( Clone , PartialEq , Eq ) ]
1504
- #[ cfg_attr( stage0, lang = "range_from" ) ] // TODO remove attribute after next snapshot
1504
+ #[ cfg_attr( stage0, lang = "range_from" ) ] // FIXME remove attribute after next snapshot
1505
1505
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1506
1506
pub struct RangeFrom < Idx > {
1507
1507
/// The lower bound of the range (inclusive).
@@ -1518,7 +1518,7 @@ impl<Idx: fmt::Debug> fmt::Debug for RangeFrom<Idx> {
1518
1518
1519
1519
/// A range which is only bounded above.
1520
1520
#[ derive( Copy , Clone , PartialEq , Eq ) ]
1521
- #[ cfg_attr( stage0, lang = "range_to" ) ] // TODO remove attribute after next snapshot
1521
+ #[ cfg_attr( stage0, lang = "range_to" ) ] // FIXME remove attribute after next snapshot
1522
1522
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1523
1523
pub struct RangeTo < Idx > {
1524
1524
/// The upper bound of the range (exclusive).
@@ -1586,7 +1586,9 @@ impl<Idx: PartialOrd + One + Sub<Output=Idx>> From<Range<Idx>> for RangeInclusiv
1586
1586
#[ unstable( feature = "inclusive_range" , reason = "recently added, follows RFC" , issue = "28237" ) ]
1587
1587
pub struct RangeToInclusive < Idx > {
1588
1588
/// The upper bound of the range (inclusive)
1589
- #[ unstable( feature = "inclusive_range" , reason = "recently added, follows RFC" , issue = "28237" ) ]
1589
+ #[ unstable( feature = "inclusive_range" ,
1590
+ reason = "recently added, follows RFC" ,
1591
+ issue = "28237" ) ]
1590
1592
pub end : Idx ,
1591
1593
}
1592
1594
0 commit comments