File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 {
You can’t perform that action at this time.
0 commit comments