diff options
-rw-r--r-- | compiler/parser/Lexer.x | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/parser/Lexer.x b/compiler/parser/Lexer.x index 116db2526f..114f7f6b32 100644 --- a/compiler/parser/Lexer.x +++ b/compiler/parser/Lexer.x @@ -2002,7 +2002,7 @@ srcParseErr -> MsgDoc srcParseErr buf len = hcat [ if null token - then ptext (sLit "parse error (possibly incorrect indentation)") + then ptext (sLit "parse error (possibly incorrect indentation or mismatched brackets)") else hcat [ptext (sLit "parse error on input "), char '`', text token, char '\''] ] |