aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/src/ast/generated
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_syntax/src/ast/generated')
-rw-r--r--crates/ra_syntax/src/ast/generated/nodes.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/crates/ra_syntax/src/ast/generated/nodes.rs b/crates/ra_syntax/src/ast/generated/nodes.rs
index 22de5aae4..9254e4fd4 100644
--- a/crates/ra_syntax/src/ast/generated/nodes.rs
+++ b/crates/ra_syntax/src/ast/generated/nodes.rs
@@ -2076,9 +2076,11 @@ impl Abi {}
2076/// ❰ (); ❱ 2076/// ❰ (); ❱
2077/// ❰ {}; ❱ 2077/// ❰ {}; ❱
2078/// 2078///
2079/// // constructions with trailing curly brace can omit the semicolon // TODO: clarify 2079/// // constructions with trailing curly brace can omit the semicolon
2080/// // but only when there are satements immediately after them (this is important!)
2080/// ❰ if bool_cond { } ❱ 2081/// ❰ if bool_cond { } ❱
2081/// ❰ loop {} ❱ 2082/// ❰ loop {} ❱
2083/// ❰ somestatment; ❱
2082/// ``` 2084/// ```
2083/// 2085///
2084/// [Reference](https://doc.rust-lang.org/reference/statements.html) 2086/// [Reference](https://doc.rust-lang.org/reference/statements.html)