| author | |
| committer | |
| log | c32171991b25b323cd68ff96c294bf5a6fa753b8 |
| tree | e32f61c0bf249671cddeb32de5ca4c9d62dbdec4 |
| parent | 3f7e9ff597a3514bb1c4f1900027c40682ac9f13 |
Fixes #145791 files changed, 1 insertions(+), 1 deletions(-)
lib/std/zig/Ast.zig+1-1| ... | ... | @@ -207,7 +207,7 @@ pub fn renderError(tree: Ast, parse_error: Error, stream: anytype) !void { |
| 207 | 207 | return stream.writeAll("declarations are not allowed between container fields"); |
| 208 | 208 | }, |
| 209 | 209 | .expected_block => { |
| 210 | return stream.print("expected block or field, found '{s}'", .{ | |
| 210 | return stream.print("expected block, found '{s}'", .{ | |
| 211 | 211 | token_tags[parse_error.token + @boolToInt(parse_error.token_is_prev)].symbol(), |
| 212 | 212 | }); |
| 213 | 213 | }, |