Skip to content

Commit 3ba6177

Browse files
committed
Fix tracking issue for error iterators
1 parent eac0908 commit 3ba6177

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/libstd/error.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -718,7 +718,7 @@ impl dyn Error {
718718
/// ```
719719
///
720720
/// [`source`]: trait.Error.html#method.source
721-
#[unstable(feature = "error_iter", issue = "58289")]
721+
#[unstable(feature = "error_iter", issue = "58520")]
722722
#[inline]
723723
pub fn iter_chain(&self) -> ErrorIter {
724724
ErrorIter {
@@ -793,7 +793,7 @@ impl dyn Error {
793793
///
794794
/// [`source`]: trait.Error.html#method.source
795795
#[inline]
796-
#[unstable(feature = "error_iter", issue = "58289")]
796+
#[unstable(feature = "error_iter", issue = "58520")]
797797
pub fn iter_sources(&self) -> ErrorIter {
798798
ErrorIter {
799799
current: self.source(),
@@ -804,13 +804,13 @@ impl dyn Error {
804804
/// An iterator over [`Error`]
805805
///
806806
/// [`Error`]: trait.Error.html
807-
#[unstable(feature = "error_iter", issue = "58289")]
807+
#[unstable(feature = "error_iter", issue = "58520")]
808808
#[derive(Copy, Clone, Debug)]
809809
pub struct ErrorIter<'a> {
810810
current: Option<&'a (dyn Error + 'static)>,
811811
}
812812

813-
#[unstable(feature = "error_iter", issue = "58289")]
813+
#[unstable(feature = "error_iter", issue = "58520")]
814814
impl<'a> Iterator for ErrorIter<'a> {
815815
type Item = &'a (dyn Error + 'static);
816816

0 commit comments

Comments
 (0)