diff --git a/trixy-parser/src/lexing/error.rs b/trixy-parser/src/lexing/error.rs index fe81f1b..c9bcf54 100644 --- a/trixy-parser/src/lexing/error.rs +++ b/trixy-parser/src/lexing/error.rs @@ -41,7 +41,7 @@ pub enum LexingError { impl AdditionalHelp for LexingError { fn additional_help(&self) -> String { match self { - LexingError::NoMatchesTaken => "This token does not produce a possible match".to_owned(), + LexingError::NoMatchesTaken => "This is probably a bug, please open an issue at the issue tracker".to_owned(), LexingError::UnexpectedEOF => "This eof was completely unexpected".to_owned(), LexingError::ExpectedArrow => "The `-` token is interpretet as a started arrow (`->`), but we could not find the arrow tip (`>`)".to_owned(), LexingError::UnknownCharacter(char) => {