try to satisfy msrv?

This commit is contained in:
mark 2020-03-20 21:40:40 -05:00
parent 2d63286c63
commit 91e3aa4b55
1 changed files with 6 additions and 4 deletions

View File

@ -374,10 +374,12 @@ impl<'a> SummaryParser<'a> {
loop { loop {
match self.next_event() { match self.next_event() {
Some(ev @ Event::Start(Tag::Paragraph)) if !first => { Some(ev @ Event::Start(Tag::Paragraph)) => {
// we're starting the suffix chapters if !first {
self.back(ev); // we're starting the suffix chapters
break; self.back(ev);
break;
}
} }
// The expectation is that pulldown cmark will terminate a paragraph before a new // The expectation is that pulldown cmark will terminate a paragraph before a new
// heading, so we can always count on this to return without skipping headings. // heading, so we can always count on this to return without skipping headings.