Skip to content

Commit e538305

Browse files
authored
Rollup merge of #148395 - Kobzol:generalize-branch-references, r=marcoieni
Generalize branch references It should be safe to merge this before the rename, and I'd like to do that, so we can test if beta/stable PRs work. r? ``@marcoieni``
2 parents 966a77b + 9836a82 commit e538305

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)