Skip to content

Commit

Permalink
add lifetime parameter.
Browse files Browse the repository at this point in the history
  • Loading branch information
kivikakk committed Dec 14, 2024
1 parent 95e5ed6 commit 6972296
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ pub struct ExtensionOptions<'c> {
pub link_url_rewriter: Option<Arc<dyn URLRewriter + 'c>>,
}

impl ExtensionOptions {
impl<'c> ExtensionOptions<'c> {
pub(crate) fn wikilinks(&self) -> Option<WikiLinksMode> {
match (
self.wikilinks_title_before_pipe,
Expand Down

0 comments on commit 6972296

Please sign in to comment.