aboutsummaryrefslogtreecommitdiff
path: root/xtask/src
diff options
context:
space:
mode:
authorveetaha <[email protected]>2020-05-10 17:15:04 +0100
committerveetaha <[email protected]>2020-05-10 17:15:04 +0100
commit80c529d1dc57873ad07ed1eb656eafe72c9a7e29 (patch)
tree82dc4470414304305fb1c15d7b9ac54e348672d8 /xtask/src
parent7a49165f5d5c8186edd04f874eae8a98e39d3df6 (diff)
Remove on TypeAliasDef as per flodiebold
Diffstat (limited to 'xtask/src')
-rw-r--r--xtask/src/ast_src.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/xtask/src/ast_src.rs b/xtask/src/ast_src.rs
index ab50eee36..e6182e857 100644
--- a/xtask/src/ast_src.rs
+++ b/xtask/src/ast_src.rs
@@ -651,7 +651,6 @@ pub(crate) const AST_SRC: AstSrc = AstSrc {
651 T![;] 651 T![;]
652 } 652 }
653 653
654 // TODO: clarify whether this does include assoc type with bounds
655 /// Type alias definition. 654 /// Type alias definition.
656 /// Includes associated type clauses with type bounds. 655 /// Includes associated type clauses with type bounds.
657 /// 656 ///
@@ -1990,7 +1989,7 @@ pub(crate) const AST_SRC: AstSrc = AstSrc {
1990 /// Constant value argument that is passed at generic instantiation site. 1989 /// Constant value argument that is passed at generic instantiation site.
1991 /// 1990 ///
1992 /// ``` 1991 /// ```
1993 /// foo::<❰ u32 ❱, ❰ true ❱ >(); 1992 /// foo::<❰ u32 ❱, ❰ true ❱>();
1994 /// 1993 ///
1995 /// bar::<❰ { 2 + 2} ❱>(); 1994 /// bar::<❰ { 2 + 2} ❱>();
1996 /// ``` 1995 /// ```