aboutsummaryrefslogtreecommitdiff
path: root/xtask/src
diff options
context:
space:
mode:
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 /// ```