Fix type reference in documents which was being confused with html tags.

This commit is contained in:
Houtamelo 2024-11-02 04:02:32 -03:00 committed by GitHub
parent ef972a3466
commit 1acb1043fe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -38,7 +38,7 @@
}
}
/// 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>;
}