about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorBaitinq <[email protected]>2025-01-23 20:36:16 +0100
committerBaitinq <[email protected]>2025-01-23 20:36:16 +0100
commit2c7f904adec45c7677daae4891f67ce01f191eb8 (patch)
tree15ba241dcd8b2909dce80049f9f124cb753a9726 /src
parentExamples: modify example (diff)
downloadinterpreter-2c7f904adec45c7677daae4891f67ce01f191eb8.tar.gz
interpreter-2c7f904adec45c7677daae4891f67ce01f191eb8.tar.bz2
interpreter-2c7f904adec45c7677daae4891f67ce01f191eb8.zip
Sync grammar
Diffstat (limited to 'src')
-rw-r--r--src/parser.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.zig b/src/parser.zig
index 75abf77..94f5cb7 100644
--- a/src/parser.zig
+++ b/src/parser.zig
@@ -232,7 +232,7 @@ pub const Parser = struct {
         } });
     }
 
-    // Expression   ::= EqualityExpression | AdditiveExpression
+    // Expression ::= EqualityExpression | AdditiveExpression
     fn parse_expression(self: *Parser) ParserError!*Node {
         errdefer if (!self.try_context) std.debug.print("Error parsing expression {any}\n", .{self.peek_token()});