]> git.lizzy.rs Git - rust.git/blobdiff - src/librustdoc/externalfiles.rs
Return the actual `DefId` for assoc. items in `register_res`
[rust.git] / src / librustdoc / externalfiles.rs
index 302fc5a677771ffe6b7957cdc512cbcf31815f18..6ed911b8d24099ff4cf3e1dc2079a734df6a08e8 100644 (file)
@@ -8,13 +8,13 @@
 
 #[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,
 }