Skip to content

Commit

Permalink
Rollup merge of #91054 - camelid:fix-tags, r=GuillaumeGomez
Browse files Browse the repository at this point in the history
rustdoc: Fix some unescaped HTML tags in docs

They were being interpreted literally.
  • Loading branch information
matthiaskrgr committed Nov 20, 2021
2 parents 62b259c + 0ae053a commit 54bc333
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/librustdoc/externalfiles.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ use serde::Serialize;

#[derive(Clone, Debug, Serialize)]
crate struct ExternalHtml {
/// Content that will be included inline in the <head> section of a
/// Content that will be included inline in the `<head>` section of a
/// rendered Markdown file or generated documentation
crate in_header: String,
/// Content that will be included inline between <body> and the content of
/// Content that will be included inline between `<body>` and the content of
/// a rendered Markdown file or generated documentation
crate before_content: String,
/// Content that will be included inline between the content and </body> of
/// Content that will be included inline between the content and `</body>` of
/// a rendered Markdown file or generated documentation
crate after_content: String,
}
Expand Down

0 comments on commit 54bc333

Please sign in to comment.