Skip to content

Commit 5928be1

Browse files
author
philipp
committed
Changed issue number to 36105
1 parent dfeb20c commit 5928be1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libcore/iter/iterator.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1678,7 +1678,7 @@ pub trait Iterator {
16781678
/// assert_eq!(*a.iter().max_by(|x, y| x.cmp(y)).unwrap(), 5);
16791679
/// ```
16801680
#[inline]
1681-
#[unstable(feature = "iter_max_by", issue="1722")]
1681+
#[unstable(feature = "iter_max_by", issue="36105")]
16821682
fn max_by<F>(self, mut compare: F) -> Option<Self::Item>
16831683
where Self: Sized, F: FnMut(&Self::Item, &Self::Item) -> Ordering,
16841684
{
@@ -1728,7 +1728,7 @@ pub trait Iterator {
17281728
/// assert_eq!(*a.iter().min_by(|x, y| x.cmp(y)).unwrap(), -10);
17291729
/// ```
17301730
#[inline]
1731-
#[unstable(feature = "iter_min_by", issue="1722")]
1731+
#[unstable(feature = "iter_min_by", issue="36105")]
17321732
fn min_by<F>(self, mut compare: F) -> Option<Self::Item>
17331733
where Self: Sized, F: FnMut(&Self::Item, &Self::Item) -> Ordering,
17341734
{

0 commit comments

Comments
 (0)