Skip to content

Commit fdc336c

Browse files
committed
Remove trailing semicolon in librustdoc
1 parent 6ada445 commit fdc336c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustdoc/html/markdown.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1055,7 +1055,7 @@ fn markdown_summary_with_limit(md: &str, length_limit: usize) -> (String, bool)
10551055
fn push(s: &mut String, text_length: &mut usize, text: &str) {
10561056
s.push_str(text);
10571057
*text_length += text.len();
1058-
};
1058+
}
10591059

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

0 commit comments

Comments
 (0)