-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
rustdoc: duplicated lifetimes #56331
Comments
Centril
added
T-rustdoc
Relevant to the rustdoc team, which will review and decide on the PR/issue.
C-bug
Category: This is a bug.
labels
Nov 29, 2018
This is a problem with how the struct is represented when re-exporting from a different crate. For example, this is how it looks in
The |
bors
added a commit
that referenced
this issue
Mar 17, 2019
Fix duplicated bounds printing in rustdoc Fixes #56331. Once again, I couldn't find out how to reproduce it with a small code so no test... :-/ r? @QuietMisdreavus
bors
added a commit
that referenced
this issue
Jun 3, 2019
Fix duplicated bounds printing in rustdoc Fixes #56331. Once again, I couldn't find out how to reproduce it with a small code so no test... :-/ r? @QuietMisdreavus
Current documentation still has evidence of this bug: see e.g. |
Gone now |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Example: https://doc.rust-lang.org/nightly/std/slice/struct.Iter.html
Behavior is observable on stable and nightly.
Clearly
'a + 'a
can be shortened to just'a
.The text was updated successfully, but these errors were encountered: