summaryrefslogtreecommitdiff
path: root/oryxc
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2026-03-03 00:25:35 +0100
committerThomas Voss <mail@thomasvoss.com> 2026-03-03 00:25:35 +0100
commit635c25af2e1f25f335319a32b41f38e2442ae2a2 (patch)
treee433d033f23364c76cf3e5725808e35652994942 /oryxc
parent9ec3f88a38e074cdaf5db39d7221c254a8d957f8 (diff)
Fix comments
Diffstat (limited to 'oryxc')
-rw-r--r--oryxc/src/parser.rs4
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) */
}