aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEdvard Thörnros <edvard.thornros@gmail.com>2021-02-15 23:54:05 +0100
committerEdvard Thörnros <edvard.thornros@gmail.com>2021-02-15 23:54:05 +0100
commit06cc26d9639102f4ab9b0eabbf1ece3f395798e0 (patch)
treea411712434fe69e4a1c2a0ffae8159960eb687d9
parent2a8020706c6309ac23755839cfdb13cf4e11d303 (diff)
downloadsylt-06cc26d9639102f4ab9b0eabbf1ece3f395798e0.tar.gz
fix error message
-rw-r--r--src/compiler.rs2
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() {