Remove trailing semicolon in librustdoc

This commit is contained in:
Aaron Hill 2020-12-07 21:52:13 -05:00
parent c857cbeb06
commit 21ed141b94
No known key found for this signature in database
GPG Key ID: B4087E510E98B164

View File

@ -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 {