Skip to content

Commit 41a4226

Browse files
committed
core: Assign tracking issue for iter_rfold
1 parent 7e81cee commit 41a4226

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/iter/traits.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ pub trait DoubleEndedIterator: Iterator {
452452
/// assert_eq!(result, "(1 + (2 + (3 + (4 + (5 + 0)))))");
453453
/// ```
454454
#[inline]
455-
#[unstable(feature = "iter_rfold", issue = "0")]
455+
#[unstable(feature = "iter_rfold", issue = "44705")]
456456
fn rfold<B, F>(mut self, mut accum: B, mut f: F) -> B where
457457
Self: Sized, F: FnMut(B, Self::Item) -> B,
458458
{

0 commit comments

Comments
 (0)