File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1678,7 +1678,7 @@ pub trait Iterator {
1678
1678
/// assert_eq!(*a.iter().max_by(|x, y| x.cmp(y)).unwrap(), 5);
1679
1679
/// ```
1680
1680
#[ inline]
1681
- #[ unstable( feature = "iter_max_by" , issue="1722 " ) ]
1681
+ #[ unstable( feature = "iter_max_by" , issue="36105 " ) ]
1682
1682
fn max_by < F > ( self , mut compare : F ) -> Option < Self :: Item >
1683
1683
where Self : Sized , F : FnMut ( & Self :: Item , & Self :: Item ) -> Ordering ,
1684
1684
{
@@ -1728,7 +1728,7 @@ pub trait Iterator {
1728
1728
/// assert_eq!(*a.iter().min_by(|x, y| x.cmp(y)).unwrap(), -10);
1729
1729
/// ```
1730
1730
#[ inline]
1731
- #[ unstable( feature = "iter_min_by" , issue="1722 " ) ]
1731
+ #[ unstable( feature = "iter_min_by" , issue="36105 " ) ]
1732
1732
fn min_by < F > ( self , mut compare : F ) -> Option < Self :: Item >
1733
1733
where Self : Sized , F : FnMut ( & Self :: Item , & Self :: Item ) -> Ordering ,
1734
1734
{
You can’t perform that action at this time.
0 commit comments