Skip to content

Commit

Permalink
Remove trailing semicolon in librustdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron1011 committed Dec 8, 2020
1 parent 6ada445 commit fdc336c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/librustdoc/html/markdown.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1055,7 +1055,7 @@ fn markdown_summary_with_limit(md: &str, length_limit: usize) -> (String, bool)
fn push(s: &mut String, text_length: &mut usize, text: &str) {
s.push_str(text);
*text_length += text.len();
};
}

'outer: for event in Parser::new_ext(md, Options::ENABLE_STRIKETHROUGH) {
match &event {
Expand Down

0 comments on commit fdc336c

Please sign in to comment.