diff options
| author | Thomas Voss <mail@thomasvoss.com> | 2026-03-04 00:15:33 +0100 |
|---|---|---|
| committer | Thomas Voss <mail@thomasvoss.com> | 2026-03-04 00:15:33 +0100 |
| commit | cc170205ec2c5273614f02e6378e581cb506860a (patch) | |
| tree | f86bdfc0b8371300477a93c492a7a53c576c6a8f /oryxc | |
| parent | 4be26b845b8cfddfafa738f620a21894f65c4de6 (diff) | |
Resolve TODO
Diffstat (limited to 'oryxc')
| -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 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", )); } |