Skip to content

Commit 9c78849

Browse files
committed
Rust fmt applied
1 parent 2b79927 commit 9c78849

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

solutions/24_file_io/file_io3.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ fn create_required_files() -> Result<(), std::io::Error> {
3333

3434
let dir_path = match file_path.parent() {
3535
Some(parent) => parent,
36-
None => return Err(Error::other("Could not get parent path"))
36+
None => return Err(Error::other("Could not get parent path")),
3737
};
3838

3939
if !dir_path.exists() {

0 commit comments

Comments
 (0)