diff options
| author | Houtamelo <88971943+Houtamelo@users.noreply.github.com> | 2024-11-02 04:02:32 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-02 04:02:32 -0300 |
| commit | 1acb1043fe68e0ff176e649048cdccc0b4cbd0e3 (patch) | |
| tree | ef6030ef48eb20ee5a20111667ff1212876604dd | |
| parent | ef972a346668ed4234d1a43ed4ad7ca4e9c58d51 (diff) | |
| download | rust-1acb1043fe68e0ff176e649048cdccc0b4cbd0e3.tar.gz rust-1acb1043fe68e0ff176e649048cdccc0b4cbd0e3.zip | |
Fix type reference in documents which was being confused with html tags.
| -rw-r--r-- | library/std/src/sys/pal/windows/mod.rs | 2 |
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>; } |
