Skip to content

Commit f09d381

Browse files
committed
Add real tracking issue 45594
1 parent 587c7d8 commit f09d381

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/libcore/iter/iterator.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1389,7 +1389,7 @@ pub trait Iterator {
13891389
/// assert_eq!(it.next(), Some(&40));
13901390
/// ```
13911391
#[inline]
1392-
#[unstable(feature = "iterator_try_fold", issue = "88888888")]
1392+
#[unstable(feature = "iterator_try_fold", issue = "45594")]
13931393
fn try_fold<B, F, R>(&mut self, init: B, mut f: F) -> R where
13941394
Self: Sized, F: FnMut(B, Self::Item) -> R, R: Try<Ok=B>
13951395
{

src/libcore/iter/traits.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ pub trait DoubleEndedIterator: Iterator {
452452
/// assert_eq!(it.next_back(), Some(&"1"));
453453
/// ```
454454
#[inline]
455-
#[unstable(feature = "iterator_try_fold", issue = "88888888")]
455+
#[unstable(feature = "iterator_try_fold", issue = "45594")]
456456
fn try_rfold<B, F, R>(&mut self, init: B, mut f: F) -> R where
457457
Self: Sized, F: FnMut(B, Self::Item) -> R, R: Try<Ok=B>
458458
{

0 commit comments

Comments
 (0)