diff options
| author | Edvard Thörnros <edvard.thornros@gmail.com> | 2021-02-15 23:54:05 +0100 |
|---|---|---|
| committer | Edvard Thörnros <edvard.thornros@gmail.com> | 2021-02-15 23:54:05 +0100 |
| commit | 06cc26d9639102f4ab9b0eabbf1ece3f395798e0 (patch) | |
| tree | a411712434fe69e4a1c2a0ffae8159960eb687d9 /src | |
| parent | 2a8020706c6309ac23755839cfdb13cf4e11d303 (diff) | |
| download | sylt-06cc26d9639102f4ab9b0eabbf1ece3f395798e0.tar.gz | |
fix error message
Diffstat (limited to 'src')
| -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 ca571ee..ec78118 100644 --- a/src/compiler.rs +++ b/src/compiler.rs @@ -1399,7 +1399,7 @@ impl Compiler { let errors: Vec<_> = self.unkowns.iter().map(|(name, (_, line))| (ErrorKind::SyntaxError(*line, Token::Identifier(name.clone())), *line, - format!("Usage of undefined 'blob': '{}'.", name,) + format!("Usage of undefined value: '{}'.", name,) )) .collect(); for (e, l, m) in errors.iter() { |
