summaryrefslogtreecommitdiff
path: root/oryxc/src/parser.rs
diff options
context:
space:
mode:
Diffstat (limited to 'oryxc/src/parser.rs')
-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",
));
}