aboutsummaryrefslogtreecommitdiff
path: root/xtask/src/ast_src.rs
diff options
context:
space:
mode:
Diffstat (limited to 'xtask/src/ast_src.rs')
-rw-r--r--xtask/src/ast_src.rs7
1 files changed, 3 insertions, 4 deletions
diff --git a/xtask/src/ast_src.rs b/xtask/src/ast_src.rs
index 815c5f885..8999efc75 100644
--- a/xtask/src/ast_src.rs
+++ b/xtask/src/ast_src.rs
@@ -1966,7 +1966,6 @@ pub(crate) const AST_SRC: AstSrc = AstSrc {
1966 /// 1966 ///
1967 struct AssocTypeArg : TypeBoundsOwner { NameRef, T![=], TypeRef } 1967 struct AssocTypeArg : TypeBoundsOwner { NameRef, T![=], TypeRef }
1968 1968
1969 // TODO: verify?
1970 /// Lifetime argument that is passed at generic instantiation site. 1969 /// Lifetime argument that is passed at generic instantiation site.
1971 /// 1970 ///
1972 /// ``` 1971 /// ```
@@ -1978,12 +1977,12 @@ pub(crate) const AST_SRC: AstSrc = AstSrc {
1978 /// [Reference](https://doc.rust-lang.org/reference/paths.html#paths-in-expressions) 1977 /// [Reference](https://doc.rust-lang.org/reference/paths.html#paths-in-expressions)
1979 struct LifetimeArg { T![lifetime] } 1978 struct LifetimeArg { T![lifetime] }
1980 1979
1981 // TODO: does this peratain to const generics? 1980
1982 // What does equal sign do here? 1981 // TODO: What does equal sign do here?
1983 /// Constant value argument that is passed at generic instantiation site. 1982 /// Constant value argument that is passed at generic instantiation site.
1984 /// 1983 ///
1985 /// ``` 1984 /// ```
1986 /// foo::<u32, ❰ true ❱>(); 1985 /// foo::<u32, ❰ { true } ❱>();
1987 /// 1986 ///
1988 /// bar::<❰ { 2 + 2} ❱>(); 1987 /// bar::<❰ { 2 + 2} ❱>();
1989 /// ``` 1988 /// ```