aboutsummaryrefslogtreecommitdiffstats
path: root/src/compiler.rs
diff options
context:
space:
mode:
authorEdvard Thörnros <edvard.thornros@gmail.com>2021-02-01 11:27:12 +0100
committerEdvard Thörnros <edvard.thornros@gmail.com>2021-02-01 11:27:12 +0100
commite9ce94d72e1e8e51b7843b414504a07e132813e1 (patch)
treed5746234adb6548dd8c70fbb6e2899963a732845 /src/compiler.rs
parentc28590d98a5beb176e2f92915faa894be06238f4 (diff)
downloadsylt-e9ce94d72e1e8e51b7843b414504a07e132813e1.tar.gz
add the missing '.'
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(())
}