diff --git a/parser/src/sym_parser.rs b/parser/src/sym_parser.rs index 0b47c8f..6988a29 100644 --- a/parser/src/sym_parser.rs +++ b/parser/src/sym_parser.rs @@ -19,7 +19,7 @@ impl NodeParser for SymParser { NodeParseResult::Complete { obj: obj } } _ => { - let msg = format!("Invalid token: {:?}", lex); + let msg = format!("Expected symbol found {:?}", lex); NodeParseResult::error(msg) } }