Skip to content

Commit

Permalink
Fixes clippy issue
Browse files Browse the repository at this point in the history
  • Loading branch information
xfbs committed Dec 28, 2023
1 parent 3676724 commit f2e2967
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ impl Config {
}

fn map_markdown(&self, markdown: &str) -> Result<String> {
let mut parser = Parser::new_ext(&markdown, Options::all());
let mut parser = Parser::new_ext(markdown, Options::all());
let mut events = vec![];

loop {
Expand Down

0 comments on commit f2e2967

Please sign in to comment.