Skip to content

Commit d99f3cf

Browse files
authored
Rollup merge of rust-lang#132493 - Houtamelo:doc_type-ref_html-tag, r=jieyouxu
Fix type reference in documents which was being confused with html tags. Running `x dist` was failing due to it invoking commands with `-D warnings`, which emitted a warning about unclosed html tags.
2 parents e24475c + 166cea2 commit d99f3cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

std/src/sys/pal/windows/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ cfg_if::cfg_if! {
3838
}
3939
}
4040

41-
/// Map a Result<T, WinError> to io::Result<T>.
41+
/// Map a [`Result<T, WinError>`] to [`io::Result<T>`](crate::io::Result<T>).
4242
trait IoResult<T> {
4343
fn io_result(self) -> crate::io::Result<T>;
4444
}

0 commit comments

Comments
 (0)