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 29, 2020
1 parent c857cbe commit 21ed141
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/librustdoc/html/markdown.rs
Expand Up @@ -1027,7 +1027,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, summary_opts()) {
match &event {
Expand Down

0 comments on commit 21ed141

Please sign in to comment.