Rollup merge of #132493 - Houtamelo:doc_type-ref_html-tag, r=jieyouxu · qinheping/verify-rust-std@d99f3cf (original) (raw)
Navigation Menu
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Commit d99f3cf
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.
File tree
1 file changed
lines changed
1 file changed
lines changed
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -38,7 +38,7 @@ cfg_if::cfg_if! { | ||
38 | 38 | } |
39 | 39 | } |
40 | 40 | |
41 | -/// Map a Result<T, WinError> to io::Result. | |
41 | +/// Map a [`Result<T, WinError>`] to [`io::Result`](crate::io::Result). | |
42 | 42 | trait IoResult<T> { |
43 | 43 | fn io_result(self) -> crate::io::Result<T>; |
44 | 44 | } |