diff options
Diffstat (limited to '')
| -rw-r--r-- | src/construct/paragraph.rs | 3 | 
1 files changed, 1 insertions, 2 deletions
diff --git a/src/construct/paragraph.rs b/src/construct/paragraph.rs index 146dc40..ec5669c 100644 --- a/src/construct/paragraph.rs +++ b/src/construct/paragraph.rs @@ -81,10 +81,9 @@ fn inside(tokenizer: &mut Tokenizer) -> State {  /// Merge “`Paragraph`”s, which currently span a single line, into actual  /// `Paragraph`s that span multiple lines.  pub fn resolve(tokenizer: &mut Tokenizer) { -    let len = tokenizer.events.len();      let mut index = 0; -    while index < len { +    while index < tokenizer.events.len() {          let event = &tokenizer.events[index];          if event.event_type == EventType::Enter && event.token_type == Token::Paragraph {  | 
