aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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() {