summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan DPC <99973273+Dylan-DPC@users.noreply.github.com>2023-05-17 19:11:56 +0530
committerGitHub <noreply@github.com>2023-05-17 19:11:56 +0530
commitb0d92c2b7060cf434fcc738b3fabf69410244cd3 (patch)
treec531783a8a7eecefef323d6a2fe2a3bd22d363ea
parent3df55382d46842dcaeff48ea83e0107183550dd6 (diff)
parent54f882e47850f25b3d2e1a0a7371f3a6243df27a (diff)
downloadrust-b0d92c2b7060cf434fcc738b3fabf69410244cd3.tar.gz
Rollup merge of #111674 - GuillaumeGomez:add-missing-backslash, r=notriddle
Add missing backslash in HTML string Found this missing one when looking at code. r? `@notriddle`
-rw-r--r--src/librustdoc/html/render/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustdoc/html/render/mod.rs b/src/librustdoc/html/render/mod.rs
index d6773169639..0a2f5f6653c 100644
--- a/src/librustdoc/html/render/mod.rs
+++ b/src/librustdoc/html/render/mod.rs
@@ -1751,7 +1751,7 @@ fn render_impl(
if trait_.is_none() && i.inner_impl().items.is_empty() {
w.write_str(
"<div class=\"item-info\">\
- <div class=\"stab empty-impl\">This impl block contains no items.</div>
+ <div class=\"stab empty-impl\">This impl block contains no items.</div>\
</div>",
);
}