diff options
| author | philipp <philipp> | 2016-08-29 19:43:18 +0200 |
|---|---|---|
| committer | philipp <philipp> | 2016-08-29 19:43:18 +0200 |
| commit | 5928be1d9bcd96ce4dd7b328fe527683a4e1621f (patch) | |
| tree | ff2465afff4239db8faaa89f1f8912ae1a2a78ce /src/libcore | |
| parent | dfeb20ce60b288d62796e17831f4d5cadf6afadf (diff) | |
| download | rust-5928be1d9bcd96ce4dd7b328fe527683a4e1621f.tar.gz rust-5928be1d9bcd96ce4dd7b328fe527683a4e1621f.zip | |
Changed issue number to 36105
Diffstat (limited to 'src/libcore')
| -rw-r--r-- | src/libcore/iter/iterator.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/iter/iterator.rs b/src/libcore/iter/iterator.rs index 48ea306ce5f..f530009585e 100644 --- a/src/libcore/iter/iterator.rs +++ b/src/libcore/iter/iterator.rs @@ -1678,7 +1678,7 @@ pub trait Iterator { /// assert_eq!(*a.iter().max_by(|x, y| x.cmp(y)).unwrap(), 5); /// ``` #[inline] - #[unstable(feature = "iter_max_by", issue="1722")] + #[unstable(feature = "iter_max_by", issue="36105")] fn max_by<F>(self, mut compare: F) -> Option<Self::Item> where Self: Sized, F: FnMut(&Self::Item, &Self::Item) -> Ordering, { @@ -1728,7 +1728,7 @@ pub trait Iterator { /// assert_eq!(*a.iter().min_by(|x, y| x.cmp(y)).unwrap(), -10); /// ``` #[inline] - #[unstable(feature = "iter_min_by", issue="1722")] + #[unstable(feature = "iter_min_by", issue="36105")] fn min_by<F>(self, mut compare: F) -> Option<Self::Item> where Self: Sized, F: FnMut(&Self::Item, &Self::Item) -> Ordering, { |
