diff --git a/emulator/src/parser/expression.rs b/emulator/src/parser/expression.rs index 606e0ce8..082d70b8 100644 --- a/emulator/src/parser/expression.rs +++ b/emulator/src/parser/expression.rs @@ -218,7 +218,7 @@ impl Context for EmptyContext { #[derive(Error, Debug, PartialEq)] pub enum EvaluationError { - #[error("undefined variable {variable:?}")] + #[error("undefined label or macro {variable:?}")] UndefinedVariable { variable: String }, #[error("could not downcast value")]