diff --git a/src/libcollections/str.rs b/src/libcollections/str.rs index 446438c119f2..eeec7f767ab1 100644 --- a/src/libcollections/str.rs +++ b/src/libcollections/str.rs @@ -1475,7 +1475,7 @@ pub trait StrExt for Sized?: ops::Slice { /// let x: &[_] = &['1', '2']; /// assert_eq!(s.find(x), None); /// ``` - #[unstable = "might be superseded by match_indices"] + #[stable] fn find(&self, pat: P) -> Option { core_str::StrExt::find(self[], pat) } @@ -1503,7 +1503,7 @@ pub trait StrExt for Sized?: ops::Slice { /// let x: &[_] = &['1', '2']; /// assert_eq!(s.rfind(x), None); /// ``` - #[unstable = "might be superseded by match_indices"] + #[stable] fn rfind(&self, pat: P) -> Option { core_str::StrExt::rfind(self[], pat) }