Skip to content

Commit 11a4454

Browse files
committed
---
yaml --- r: 167249 b: refs/heads/try c: c1f3aca h: refs/heads/master i: 167247: ff05edf v: v3
1 parent de3fe5f commit 11a4454

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: 023dfb0c898d851dee6ace2f8339b73b5287136b
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 023dfb0c898d851dee6ace2f8339b73b5287136b
5-
refs/heads/try: 72c8f3772bdca40ff2be2908aaf6b6a73d1c7821
5+
refs/heads/try: c1f3acaa64a004577b79834996715595877efffc
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
88
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596

branches/try/src/libcollections/str.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1475,7 +1475,7 @@ pub trait StrExt for Sized?: ops::Slice<uint, str> {
14751475
/// let x: &[_] = &['1', '2'];
14761476
/// assert_eq!(s.find(x), None);
14771477
/// ```
1478-
#[unstable = "might be superseded by match_indices"]
1478+
#[stable]
14791479
fn find<P: CharEq>(&self, pat: P) -> Option<uint> {
14801480
core_str::StrExt::find(self[], pat)
14811481
}
@@ -1503,7 +1503,7 @@ pub trait StrExt for Sized?: ops::Slice<uint, str> {
15031503
/// let x: &[_] = &['1', '2'];
15041504
/// assert_eq!(s.rfind(x), None);
15051505
/// ```
1506-
#[unstable = "might be superseded by match_indices"]
1506+
#[stable]
15071507
fn rfind<P: CharEq>(&self, pat: P) -> Option<uint> {
15081508
core_str::StrExt::rfind(self[], pat)
15091509
}

0 commit comments

Comments
 (0)