fix: Resolve clippy field_reassign_with_default warning
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.6
parent
350bbc0086
commit
9ab3d23350
+4
-2
@@ -90,8 +90,10 @@ fn main() {
|
||||
.filter(|a| !a.starts_with("--"))
|
||||
.map(|s| s.as_str());
|
||||
|
||||
let mut md_options = MarkdownOptions::default();
|
||||
md_options.include_page_numbers = page_numbers;
|
||||
let md_options = MarkdownOptions {
|
||||
include_page_numbers: page_numbers,
|
||||
..Default::default()
|
||||
};
|
||||
|
||||
match process_pdf_with_config_pages(
|
||||
pdf_path,
|
||||
|
||||
Reference in New Issue
Block a user