Remove on TypeAliasDef as per flodiebold

This commit is contained in:
veetaha 2020-05-10 19:15:04 +03:00
parent 7a49165f5d
commit 80c529d1dc

View File

@ -651,7 +651,6 @@ struct StaticDef: VisibilityOwner, NameOwner, TypeParamsOwner, AttrsOwner, DocCo
T![;]
}
// TODO: clarify whether this does include assoc type with bounds
/// Type alias definition.
/// Includes associated type clauses with type bounds.
///
@ -1990,7 +1989,7 @@ struct LifetimeArg { T![lifetime] }
/// Constant value argument that is passed at generic instantiation site.
///
/// ```
/// foo::<❰ u32 ❱, ❰ true ❱ >();
/// foo::<❰ u32 ❱, ❰ true ❱>();
///
/// bar::<❰ { 2 + 2} ❱>();
/// ```