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 @@ -1475,7 +1475,7 @@ pub trait StrExt for Sized?: ops::Slice<uint, str> {
1475
1475
/// let x: &[_] = &['1', '2'];
1476
1476
/// assert_eq!(s.find(x), None);
1477
1477
/// ```
1478
- #[ unstable = "might be superseded by match_indices" ]
1478
+ #[ stable ]
1479
1479
fn find < P : CharEq > ( & self , pat : P ) -> Option < uint > {
1480
1480
core_str:: StrExt :: find ( self [ ] , pat)
1481
1481
}
@@ -1503,7 +1503,7 @@ pub trait StrExt for Sized?: ops::Slice<uint, str> {
1503
1503
/// let x: &[_] = &['1', '2'];
1504
1504
/// assert_eq!(s.rfind(x), None);
1505
1505
/// ```
1506
- #[ unstable = "might be superseded by match_indices" ]
1506
+ #[ stable ]
1507
1507
fn rfind < P : CharEq > ( & self , pat : P ) -> Option < uint > {
1508
1508
core_str:: StrExt :: rfind ( self [ ] , pat)
1509
1509
}
You can’t perform that action at this time.
0 commit comments