-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Rustdoc cleanup #85175
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Rustdoc cleanup #85175
Conversation
Some changes occurred in HTML/CSS themes. A change occurred in the Ayu theme. cc @Cldfire Some changes occurred in HTML/CSS/JS. |
@@ -600,7 +596,6 @@ fn item_trait(w: &mut Buffer, cx: &Context<'_>, it: &clean::Item, t: &clean::Tra | |||
for t in types { | |||
trait_item(w, cx, t, it); | |||
} | |||
write_loading_content(w, "</div>"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The </div>
itself still need to be there, doesn't it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indeed, good catch!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Generally looks good to me, though I concur with @notriddle's observation that we still need those </divs>
.
eaed4c6
to
cb91c6f
Compare
Fixed @notriddle's comment! |
@bors r+ |
📌 Commit cb91c6f has been approved by |
…laumeGomez Rollup of 4 pull requests Successful merges: - rust-lang#85068 (Fix diagnostic for cross crate private tuple struct constructors) - rust-lang#85175 (Rustdoc cleanup) - rust-lang#85177 (add BITS associated constant to core::num::Wrapping) - rust-lang#85240 (Don't suggest adding `'static` lifetime to arguments) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Part of #83332. The goal of this PR is to remove a few unused things:
r? @jsha