Skip to content

Commit

Permalink
Clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
scouten committed Dec 31, 2023
1 parent 5dcc579 commit 41e5405
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/document/header.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ impl<'a> HasSpan<'a> for Header<'a> {
}
}

fn parse_title<'a>(i: Span<'a>) -> IResult<Span, Span<'a>> {
fn parse_title(i: Span<'_>) -> IResult<Span, Span<'_>> {
let (rem, line) = non_empty_line(i)?;

let (title, _) = tag("= ")(line)?;
Expand Down

0 comments on commit 41e5405

Please sign in to comment.