-
Notifications
You must be signed in to change notification settings - Fork 13k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix misuse of rev attribute on <a> tag #87154
Conversation
This comment has been minimized.
This comment has been minimized.
692c6fc
to
9bab94f
Compare
And of course I forgot to format as usual... 😢 |
I'm not part of the rustdoc team but this fix seems quite straightforward. But I haven't understood why my rollup triggers it (i.e. previous build didn't trigger it). Could you elaborate? Should we recreate the rollup? |
I'm honestly not sure either. Something might have been added into the index that wasn't there before, triggering the generation of this link which then fails the HTML check (which has been added a few weeks ago). I didn't look into details but I expect something like this. Well at least it allowed us to spot this issue. |
Hmm, okay, let's r+ anyway. I assume it's flaky and I'll recreate a rollup if the running one fails. Thanks! |
📌 Commit 9bab94f has been approved by |
Rollup of 8 pull requests Successful merges: - rust-lang#85579 (Added Arc::try_pin) - rust-lang#86478 (Add -Zfuture-incompat-test to assist with testing future-incompat reports.) - rust-lang#86947 (Move assert_matches to an inner module) - rust-lang#87081 (Add tracking issue number to `wasi_ext`) - rust-lang#87127 (Add safety comments in private core::slice::rotate::ptr_rotate function) - rust-lang#87134 (Make SelfInTyParamDefault wording not be specific to type defaults) - rust-lang#87147 (Update cargo) - rust-lang#87154 (Fix misuse of rev attribute on <a> tag) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
It's listed in the HTML4.01 spec |
The
rev
attribute is supposed to talk about "ownership" as far as I could found out. This attribute seems not very well defined in the HTML spec and its usage in rustdoc is suboptimal.It was found out in #87149.
r? @JohnTitor