Skip to content

Commit

Permalink
fix: pass missing options to doc test
Browse files Browse the repository at this point in the history
  • Loading branch information
nlopes committed Mar 1, 2025
1 parent d3a6877 commit 67dc607
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion acdc-parser/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
//!
//! This is a subsection."#;
//!
//! let document = parse(content).unwrap();
//! let options = acdc_parser::Options::default();
//! let document = parse(content, &options).unwrap();
//!
//! println!("{:?}", document);
use std::{path::Path, string::ToString};
Expand Down

0 comments on commit 67dc607

Please sign in to comment.