-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Fix duplicate methods in rustdoc #22765
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
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
can you make a test? there is some infrastructure for this in |
I couldn't figure out how to test this easily. Maybe file an issue to test this? |
what makes it hard to test exactly? |
htmldocck.py can test for one or more occurences, but can't test for exactly one occurence at the moment. I can implement that and then test this. I will try that tomorrow. |
Added a test. |
rustdoc impl item did not include default methods for local crates, but did include them for external crates. This resulted in duplicate methods. Fix so that impl item does not include default methods for external crates. Fix #22595.
rustdoc impl item did not include default methods for local crates, but did include them for external crates. This resulted in duplicate methods. Fix so that impl item does not include default methods for external crates.
Fix #22595.