Skip to content

Commit e2f7032

Browse files
authored
Fix "unresolved link to std::fmt::Error"
error: unresolved link to `std::fmt::Error` --> library/core/src/fmt/mod.rs:115:52 | 115 | /// This function will return an instance of [`std::fmt::Error`] on error. | | = note: `-D rustdoc::broken-intra-doc-links` implied by `-D warnings`
1 parent 659c17a commit e2f7032

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/core/src/fmt/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ pub trait Write {
112112
///
113113
/// # Errors
114114
///
115-
/// This function will return an instance of [`std::fmt::Error`] on error.
115+
/// This function will return an instance of [`std::fmt::Error`][Error] on error.
116116
///
117117
/// The purpose of that error is to abort the formatting operation when the underlying
118118
/// destination encounters some error preventing it from accepting more text; it should

0 commit comments

Comments
 (0)