diff options
-rw-r--r-- | crates/ra_syntax/src/ast/generated/nodes.rs | 2 | ||||
-rw-r--r-- | xtask/src/ast_src.rs | 7 |
2 files changed, 4 insertions, 5 deletions
diff --git a/crates/ra_syntax/src/ast/generated/nodes.rs b/crates/ra_syntax/src/ast/generated/nodes.rs index 2b652dcb5..29345dc05 100644 --- a/crates/ra_syntax/src/ast/generated/nodes.rs +++ b/crates/ra_syntax/src/ast/generated/nodes.rs | |||
@@ -2446,7 +2446,7 @@ impl LifetimeArg { | |||
2446 | /// Constant value argument that is passed at generic instantiation site. | 2446 | /// Constant value argument that is passed at generic instantiation site. |
2447 | /// | 2447 | /// |
2448 | /// ``` | 2448 | /// ``` |
2449 | /// foo::<❰ u32 ❱, ❰ true ❱>(); | 2449 | /// foo::<u32, ❰ { true } ❱>(); |
2450 | /// | 2450 | /// |
2451 | /// bar::<❰ { 2 + 2} ❱>(); | 2451 | /// bar::<❰ { 2 + 2} ❱>(); |
2452 | /// ``` | 2452 | /// ``` |
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 | /// ``` |