summaryrefslogtreecommitdiff
path: root/oryxc
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2026-03-04 00:15:33 +0100
committerThomas Voss <mail@thomasvoss.com> 2026-03-04 00:15:33 +0100
commitcc170205ec2c5273614f02e6378e581cb506860a (patch)
treef86bdfc0b8371300477a93c492a7a53c576c6a8f /oryxc
parent4be26b845b8cfddfafa738f620a21894f65c4de6 (diff)
Resolve TODO
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 3d5d78c..8f4ebc1 100644
--- a/oryxc/src/parser.rs
+++ b/oryxc/src/parser.rs
@@ -487,8 +487,8 @@ impl<'a> Parser<'a> {
if p.get_n_move() != TokenType::ParenR {
/* TODO: Highlight the entire argument list */
return Err(OryxError::new(
- p.get_view_at(parenl), /* TODO: Is this the right token? */
- "parameter list missing closing parenthesis",
+ p.get_view_at(parenl),
+ "parameter list missing a closing parenthesis",
));
}