@@ -33,15 +33,14 @@ use crate::string;
33
33
/// themselves through the [`Display`] and [`Debug`] traits, and may provide
34
34
/// cause chain information:
35
35
///
36
- /// The [` source`] method is generally used when errors cross "abstraction
37
- /// boundaries". If one module must report an error that is caused by an error
38
- /// from a lower-level module, it can allow access to that error via the
39
- /// [` source`] method . This makes it possible for the high-level module to
40
- /// provide its own errors while also revealing some of the implementation for
41
- /// debugging via [ `source`] chains.
36
+ /// [`Error:: source() `] is generally used when errors cross
37
+ /// "abstraction boundaries". If one module must report an error that is caused
38
+ /// by an error from a lower-level module, it can allow accessing that error
39
+ /// via [`Error:: source()`] . This makes it possible for the high-level
40
+ /// module to provide its own errors while also revealing some of the
41
+ /// implementation for debugging via `source` chains.
42
42
///
43
43
/// [`Result<T, E>`]: Result
44
- /// [`source`]: Error::source
45
44
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
46
45
pub trait Error : Debug + Display {
47
46
/// The lower-level source of this error, if any.
@@ -636,7 +635,7 @@ impl dyn Error {
636
635
}
637
636
638
637
/// Returns an iterator starting with the current error and continuing with
639
- /// recursively calling [`source`].
638
+ /// recursively calling [`Error:: source`].
640
639
///
641
640
/// If you want to omit the current error and only use its sources,
642
641
/// use `skip(1)`.
@@ -686,8 +685,6 @@ impl dyn Error {
686
685
/// assert!(iter.next().is_none());
687
686
/// assert!(iter.next().is_none());
688
687
/// ```
689
- ///
690
- /// [`source`]: Error::source
691
688
#[ unstable( feature = "error_iter" , issue = "58520" ) ]
692
689
#[ inline]
693
690
pub fn chain ( & self ) -> Chain < ' _ > {
0 commit comments