Skip to content

Commit 9836a82

Browse files
committed
Generalize branch references to HEAD
1 parent 54b32c6 commit 9836a82

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/shims/io_error.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ impl From<Scalar> for IoError {
5656
}
5757

5858
// This mapping should match `decode_error_kind` in
59-
// <https://github.com/rust-lang/rust/blob/master/library/std/src/sys/pal/unix/mod.rs>.
59+
// <https://github.com/rust-lang/rust/blob/HEAD/library/std/src/sys/pal/unix/mod.rs>.
6060
const UNIX_IO_ERROR_TABLE: &[(&str, std::io::ErrorKind)] = {
6161
use std::io::ErrorKind::*;
6262
&[
@@ -103,7 +103,7 @@ const UNIX_IO_ERROR_TABLE: &[(&str, std::io::ErrorKind)] = {
103103
]
104104
};
105105
// This mapping should match `decode_error_kind` in
106-
// <https://github.com/rust-lang/rust/blob/master/library/std/src/sys/pal/windows/mod.rs>.
106+
// <https://github.com/rust-lang/rust/blob/HEAD/library/std/src/sys/pal/windows/mod.rs>.
107107
const WINDOWS_IO_ERROR_TABLE: &[(&str, std::io::ErrorKind)] = {
108108
use std::io::ErrorKind::*;
109109
// It's common for multiple error codes to map to the same io::ErrorKind. We have all for the

0 commit comments

Comments
 (0)