Skip to content

Commit 7171c83

Browse files
committed
Tracking issue 62544 for iter_is_partitioned
1 parent 4c22e48 commit 7171c83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/iter/traits/iterator.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1595,7 +1595,7 @@ pub trait Iterator {
15951595
/// assert!("Iterator".chars().is_partitioned(char::is_uppercase));
15961596
/// assert!(!"IntoIterator".chars().is_partitioned(char::is_uppercase));
15971597
/// ```
1598-
#[unstable(feature = "iter_is_partitioned", reason = "new API", issue = "0")]
1598+
#[unstable(feature = "iter_is_partitioned", reason = "new API", issue = "62544")]
15991599
fn is_partitioned<P>(mut self, mut predicate: P) -> bool
16001600
where
16011601
Self: Sized,

0 commit comments

Comments
 (0)