diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-01-04 02:20:55 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-01-04 02:20:55 +0100 |
| commit | 8766e4412b95cfa0288683748cc20aba81a64d08 (patch) | |
| tree | b068bbd32915b2c0ca846465edfd6cb9bf718d6c /src/main.rs | |
| parent | b03284133baa6339fe4adf48e4a6499ef3ac287b (diff) | |
Address pedantic issues
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main.rs b/src/main.rs index cedd557..6c7b8a9 100644 --- a/src/main.rs +++ b/src/main.rs @@ -15,9 +15,9 @@ fn main() -> Result<()> { let source = current_dir()?; let source_name = source.file_name().unwrap().to_string_lossy(); let parent = source.parent().unwrap(); - let gemini_destination_name = format!("{}_gemini", source_name); + let gemini_destination_name = format!("{source_name}_gemini"); let gemini_destination = parent.join(gemini_destination_name); - let html_destination_name = format!("{}_html", source_name); + let html_destination_name = format!("{source_name}_html"); let html_destination = parent.join(html_destination_name); // Step 1. Identify the files @@ -26,9 +26,9 @@ fn main() -> Result<()> { // Step 2. Load the layout let mut file_handler = FileHandler::default(); match file_handler.get_layout_or_panic(&files) { - Ok(_) => {} + Ok(()) => {} Err(error) => { - eprintln!("{}", error); + eprintln!("{error}"); exit(1); } } |