aboutsummaryrefslogtreecommitdiffstats
path: root/src/compiler.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/compiler.rs')
-rw-r--r--src/compiler.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler.rs b/src/compiler.rs
index b76e1b2..6c01ea3 100644
--- a/src/compiler.rs
+++ b/src/compiler.rs
@@ -370,7 +370,7 @@ impl Compiler {
return Err(());
}
- expect!(self, Token::RightParen, "Expected ')' after tuple");
+ expect!(self, Token::RightParen, "Expected ')' after tuple.");
block.add(Op::Tuple(num_args), self.line());
Ok(())
}