Rollup merge of #132493 - Houtamelo:doc_type-ref_html-tag, r=jieyouxu · qinheping/verify-rust-std@d99f3cf (original) (raw)
Navigation Menu
- GitHub Copilot Write better code with AI
- GitHub Models New Manage and compare prompts
- GitHub Advanced Security Find and fix vulnerabilities
- Actions Automate any workflow
- Codespaces Instant dev environments
- Issues Plan and track work
- Code Review Manage code changes
- Discussions Collaborate outside of code
- Code Search Find more, search less
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
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
Lines changed: 1 addition & 1 deletion
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 | } |