Skip to content

Commit 3ee5a3c

Browse files
author
The Miri Cronjob Bot
committed
Merge ref 'c5dabe8cf798' from rust-lang/rust
Pull recent changes from https://github.com/rust-lang/rust via Josh. Upstream ref: c5dabe8cf798123087d094f06417f5a767ca73e8 Filtered ref: deb7e87 Upstream diff: rust-lang/rust@292be5c...c5dabe8 This merge was created using https://github.com/rust-lang/josh-sync.
2 parents 31cc9ed + deb7e87 commit 3ee5a3c

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)