-
Notifications
You must be signed in to change notification settings - Fork 13.3k
rustdoc: Fix duplicated impls with generics #45620
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
The same type can appear multiple times in impls so we need to use a set to avoid adding it multiple times.
r? @frewsxcv (rust_highfive has picked a reviewer for you, use r? to override) |
reassigning to someone from dev-tools team |
I think that the order won't be kept with only the set. You need both a |
I'm not sure about a |
Right, but is that the order of the |
The order of what? This is just gathering |
review ping @QuietMisdreavus or @GuillaumeGomez! |
@bors r+ Sorry for letting this get stale! |
📌 Commit 676b4bb has been approved by |
…r=QuietMisdreavus rustdoc: Fix duplicated impls with generics The same type can appear multiple times in impls so we need to use a set to avoid adding it multiple times. Fixes: rust-lang#45584
…reavus rustdoc: Fix duplicated impls with generics The same type can appear multiple times in impls so we need to use a set to avoid adding it multiple times. Fixes: #45584
☀️ Test successful - status-appveyor, status-travis |
The same type can appear multiple times in impls so we need to use a set
to avoid adding it multiple times.
Fixes: #45584