Skip to content

Commit

Permalink
fix: codegen job
Browse files Browse the repository at this point in the history
  • Loading branch information
ematipico committed Jan 21, 2025
1 parent aa2814f commit afcb870
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions codegen/src/lintdoc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -969,11 +969,11 @@ fn write_documentation(
write!(content, "~")?;
}

Event::Start(Tag::BlockQuote) => {
Event::Start(Tag::BlockQuote(_)) => {
write!(content, ">")?;
}

Event::End(TagEnd::BlockQuote) => {
Event::End(TagEnd::BlockQuote(_)) => {
writeln!(content)?;
}

Expand Down

0 comments on commit afcb870

Please sign in to comment.