aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax
diff options
context:
space:
mode:
authorveetaha <[email protected]>2020-05-10 17:17:46 +0100
committerveetaha <[email protected]>2020-05-10 17:17:46 +0100
commit09c438b47eb035e84bc013a3e78fae9f938e9b85 (patch)
tree260c93aa2f97d36824e58816fd0dd8c27cbda528 /crates/ra_syntax
parent80c529d1dc57873ad07ed1eb656eafe72c9a7e29 (diff)
Properly document const impl as per flodiebold
Diffstat (limited to 'crates/ra_syntax')
-rw-r--r--crates/ra_syntax/src/ast/generated/nodes.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ra_syntax/src/ast/generated/nodes.rs b/crates/ra_syntax/src/ast/generated/nodes.rs
index 7de20bff7..c0f27a0f7 100644
--- a/crates/ra_syntax/src/ast/generated/nodes.rs
+++ b/crates/ra_syntax/src/ast/generated/nodes.rs
@@ -506,7 +506,7 @@ impl TypeAliasDef {
506/// ``` 506/// ```
507/// ❰ 507/// ❰
508/// #[attr] 508/// #[attr]
509/// unsafe impl<T> !Foo for Bar where T: Debug { 509/// unsafe impl<T> const !Foo for Bar where T: Debug {
510/// #![inner_attr] 510/// #![inner_attr]
511/// // ... 511/// // ...
512/// } 512/// }
@@ -2440,7 +2440,7 @@ impl LifetimeArg {
2440/// Constant value argument that is passed at generic instantiation site. 2440/// Constant value argument that is passed at generic instantiation site.
2441/// 2441///
2442/// ``` 2442/// ```
2443/// foo::<❰ u32 ❱, ❰ true ❱ >(); 2443/// foo::<❰ u32 ❱, ❰ true ❱>();
2444/// 2444///
2445/// bar::<❰ { 2 + 2} ❱>(); 2445/// bar::<❰ { 2 + 2} ❱>();
2446/// ``` 2446/// ```