rustdoc: Fix duplicated impls with generics#45620
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