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`
This commit is contained in:
Dylan DPC 2023-05-17 19:11:56 +05:30 committed by GitHub
commit b0d92c2b70
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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>",
);
}