diff options
| author | Edvard Thörnros <edvard.thornros@gmail.com> | 2021-02-01 11:27:12 +0100 |
|---|---|---|
| committer | Edvard Thörnros <edvard.thornros@gmail.com> | 2021-02-01 11:27:12 +0100 |
| commit | e9ce94d72e1e8e51b7843b414504a07e132813e1 (patch) | |
| tree | d5746234adb6548dd8c70fbb6e2899963a732845 /src/compiler.rs | |
| parent | c28590d98a5beb176e2f92915faa894be06238f4 (diff) | |
| download | sylt-e9ce94d72e1e8e51b7843b414504a07e132813e1.tar.gz | |
add the missing '.'
Diffstat (limited to 'src/compiler.rs')
| -rw-r--r-- | src/compiler.rs | 2 |
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(()) } |
