Skip to content

Commit 21ed141

Browse files
committed
Remove trailing semicolon in librustdoc
1 parent c857cbe commit 21ed141

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
@@ -1027,7 +1027,7 @@ fn markdown_summary_with_limit(md: &str, length_limit: usize) -> (String, bool)
10271027
fn push(s: &mut String, text_length: &mut usize, text: &str) {
10281028
s.push_str(text);
10291029
*text_length += text.len();
1030-
};
1030+
}
10311031

10321032
'outer: for event in Parser::new_ext(md, summary_opts()) {
10331033
match &event {

0 commit comments

Comments
 (0)