| author | |
| committer | |
| log | 5c5d1f93c4aa469cfba3f7838ae4a7db18e7152b |
| tree | 3550ab8a261eab59367e98f2bc6e8aa33f99f3fd |
| parent | f30ab46306d7d137ed70bbcb3466c27846833ed3 |
The rhs can be omitted eg `0..`1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/zig/Ast.zig+1-1| ... | @@ -3225,7 +3225,7 @@ pub const Node = struct { | ... | @@ -3225,7 +3225,7 @@ pub const Node = struct { |
| 3225 | for_simple, | 3225 | for_simple, |
| 3226 | /// `for (lhs[0..inputs]) lhs[inputs + 1] else lhs[inputs + 2]`. `For[rhs]`. | 3226 | /// `for (lhs[0..inputs]) lhs[inputs + 1] else lhs[inputs + 2]`. `For[rhs]`. |
| 3227 | @"for", | 3227 | @"for", |
| 3228 | /// `lhs..rhs`. | 3228 | /// `lhs..rhs`. rhs can be omitted. |
| 3229 | for_range, | 3229 | for_range, |
| 3230 | /// `if (lhs) rhs`. | 3230 | /// `if (lhs) rhs`. |
| 3231 | /// `if (lhs) |a| rhs`. | 3231 | /// `if (lhs) |a| rhs`. |