-
Notifications
You must be signed in to change notification settings - Fork 13.6k
Closed
Labels
C-bugCategory: This is a bug.Category: This is a bug.T-rustdocRelevant to the rustdoc team, which will review and decide on the PR/issue.Relevant to the rustdoc team, which will review and decide on the PR/issue.
Description
Example: https://doc.rust-lang.org/nightly/std/slice/struct.Iter.html
pub struct Iter<'a, T> where
T: 'a + 'a, { /* fields omitted */ }
Behavior is observable on stable and nightly.
Clearly 'a + 'a
can be shortened to just 'a
.
Metadata
Metadata
Assignees
Labels
C-bugCategory: This is a bug.Category: This is a bug.T-rustdocRelevant to the rustdoc team, which will review and decide on the PR/issue.Relevant to the rustdoc team, which will review and decide on the PR/issue.