Skip to content

Commit 3fd7763

Browse files
committed
Auto merge of #133978 - matthiaskrgr:rollup-6gh1iho, r=matthiaskrgr
Rollup of 7 pull requests Successful merges: - #130209 (Stabilize `std::io::ErrorKind::CrossesDevices`) - #130254 (Stabilize `std::io::ErrorKind::QuotaExceeded`) - #132187 (Add Extend impls for tuples of arity 1 through 12) - #133875 (handle `--json-output` properly) - #133934 (Do not implement unsafe auto traits for types with unsafe fields) - #133954 (Hide errors whose suggestions would contain error constants or types) - #133960 (rustdoc: remove eq for clean::Attributes) r? `@ghost` `@rustbot` modify labels: rollup
2 parents dc511e0 + d874cf6 commit 3fd7763

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shims/io_error.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const UNIX_IO_ERROR_TABLE: &[(&str, std::io::ErrorKind)] = {
4444
("ECONNREFUSED", ConnectionRefused),
4545
("ECONNRESET", ConnectionReset),
4646
("EDEADLK", Deadlock),
47-
("EDQUOT", FilesystemQuotaExceeded),
47+
("EDQUOT", QuotaExceeded),
4848
("EEXIST", AlreadyExists),
4949
("EFBIG", FileTooLarge),
5050
("EHOSTUNREACH", HostUnreachable),

0 commit comments

Comments
 (0)