diff options
| author | Thomas Voss <mail@thomasvoss.com> | 2026-03-03 00:25:35 +0100 |
|---|---|---|
| committer | Thomas Voss <mail@thomasvoss.com> | 2026-03-03 00:25:35 +0100 |
| commit | 635c25af2e1f25f335319a32b41f38e2442ae2a2 (patch) | |
| tree | e433d033f23364c76cf3e5725808e35652994942 /oryxc/src/parser.rs | |
| parent | 9ec3f88a38e074cdaf5db39d7221c254a8d957f8 (diff) | |
Fix comments
Diffstat (limited to 'oryxc/src/parser.rs')
| -rw-r--r-- | oryxc/src/parser.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/oryxc/src/parser.rs b/oryxc/src/parser.rs index a0762c7..69e9b1a 100644 --- a/oryxc/src/parser.rs +++ b/oryxc/src/parser.rs @@ -31,10 +31,10 @@ pub enum AstType { Function, /* (prototype, body) */ Identifier, /* (_, _) */ MultiDefBind, /* (extra-data, _) */ - Number, /* (token, _) */ + Number, /* (_, _) */ Pointer, /* (rhs, _) */ Return, /* (extra-data, _) */ - String, /* (token, _) */ + String, /* (_, _) */ UnaryOperator, /* (rhs, _) */ BinaryOperator, /* (lhs, rhs) */ } |