From 9c7884995225456d52a7b31f86470333c3adc053 Mon Sep 17 00:00:00 2001 From: Kivanc Date: Fri, 12 Dec 2025 15:45:09 +0300 Subject: [PATCH] Rust fmt applied --- solutions/24_file_io/file_io3.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solutions/24_file_io/file_io3.rs b/solutions/24_file_io/file_io3.rs index 47a94325..a68dad6e 100644 --- a/solutions/24_file_io/file_io3.rs +++ b/solutions/24_file_io/file_io3.rs @@ -33,7 +33,7 @@ fn create_required_files() -> Result<(), std::io::Error> { let dir_path = match file_path.parent() { Some(parent) => parent, - None => return Err(Error::other("Could not get parent path")) + None => return Err(Error::other("Could not get parent path")), }; if !dir_path.exists() {