Skip to content

Commit 54bc333

Browse files
authored
Rollup merge of #91054 - camelid:fix-tags, r=GuillaumeGomez
rustdoc: Fix some unescaped HTML tags in docs They were being interpreted literally.
2 parents 62b259c + 0ae053a commit 54bc333

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/librustdoc/externalfiles.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ use serde::Serialize;
88

99
#[derive(Clone, Debug, Serialize)]
1010
crate struct ExternalHtml {
11-
/// Content that will be included inline in the <head> section of a
11+
/// Content that will be included inline in the `<head>` section of a
1212
/// rendered Markdown file or generated documentation
1313
crate in_header: String,
14-
/// Content that will be included inline between <body> and the content of
14+
/// Content that will be included inline between `<body>` and the content of
1515
/// a rendered Markdown file or generated documentation
1616
crate before_content: String,
17-
/// Content that will be included inline between the content and </body> of
17+
/// Content that will be included inline between the content and `</body>` of
1818
/// a rendered Markdown file or generated documentation
1919
crate after_content: String,
2020
}

0 commit comments

Comments
 (0)