Skip to content

Commit b210fdf

Browse files
committed
Checker fix
1 parent 2b5356a commit b210fdf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

solutions/24_file_io/file_io1.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ fn main() {
1212
Ok(contents) => {
1313
assert_eq!("This is the file content.", contents);
1414
}
15-
Err(e) => {
15+
Err(_) => {
1616
panic!("Error reading file.");
1717

1818
}

0 commit comments

Comments
 (0)