diff options
author | veetaha <[email protected]> | 2020-05-10 19:02:10 +0100 |
---|---|---|
committer | veetaha <[email protected]> | 2020-05-10 19:02:21 +0100 |
commit | 71f2be968b128f489a2384b029ec3d678d085820 (patch) | |
tree | 72fe8c5029b549cbceb9f6c58cb254da48f8512e /crates | |
parent | f6fd4c4a74b768f05c3dff8e991066e425ebc368 (diff) |
Verified ConstArg example, waiting for response on what `=` sign pertains to
Diffstat (limited to 'crates')
-rw-r--r-- | crates/ra_syntax/src/ast/generated/nodes.rs | 2 |
1 files changed, 1 insertions, 1 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 | /// ``` |