-
Notifications
You must be signed in to change notification settings - Fork 13.6k
Closed
Labels
A-docsArea: Documentation for any part of the project, including the compiler, standard library, and toolsArea: Documentation for any part of the project, including the compiler, standard library, and toolsT-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
'Complex' type aliases get rendered incorrectly by Rustdoc.
E.g., diesel::expression::helper_types::AsExprOf
is defined here as:
pub type AsExprOf<Item, Type> = <Item as AsExpression<Type>>::Expression;
Rustdoc (from Rust 1.16 stable, rendered on Travis), however renders it like this (can be seen here):
type AsExprOf<Item, Type> = Item::Expression;
Metadata
Metadata
Assignees
Labels
A-docsArea: Documentation for any part of the project, including the compiler, standard library, and toolsArea: Documentation for any part of the project, including the compiler, standard library, and toolsT-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.