Skip to content

Commit

Permalink
Rollup merge of #111674 - GuillaumeGomez:add-missing-backslash, r=not…
Browse files Browse the repository at this point in the history
…riddle

Add missing backslash in HTML string

Found this missing one when looking at code.

r? `@notriddle`
  • Loading branch information
Dylan-DPC committed May 17, 2023
2 parents 3df5538 + 54f882e commit b0d92c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/librustdoc/html/render/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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>",
);
}
Expand Down

0 comments on commit b0d92c2

Please sign in to comment.