about summary refs log tree commit diff
path: root/library
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2024-11-02 12:14:13 +0100
committerGitHub <noreply@github.com>2024-11-02 12:14:13 +0100
commit52ff41ccaadb4fdc348d465b4df6862873080441 (patch)
tree7cea75471d93e2960a54c651ccf2d9eba00bbbe4 /library
parent90c5f862989c87c0f30466a23293a029e434e323 (diff)
parent1acb1043fe68e0ff176e649048cdccc0b4cbd0e3 (diff)
downloadrust-52ff41ccaadb4fdc348d465b4df6862873080441.tar.gz
rust-52ff41ccaadb4fdc348d465b4df6862873080441.zip
Rollup merge of #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.
Diffstat (limited to 'library')
-rw-r--r--library/std/src/sys/pal/windows/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/sys/pal/windows/mod.rs b/library/std/src/sys/pal/windows/mod.rs
index a9886012e8e..aca69490d7a 100644
--- a/library/std/src/sys/pal/windows/mod.rs
+++ b/library/std/src/sys/pal/windows/mod.rs
@@ -38,7 +38,7 @@ cfg_if::cfg_if! {
     }
 }
 
-/// Map a Result<T, WinError> to io::Result<T>.
+/// Map a [`Result<T, WinError>`] to [`io::Result<T>`](crate::io::Result<T>).
 trait IoResult<T> {
     fn io_result(self) -> crate::io::Result<T>;
 }