diff options
Diffstat (limited to 'parsing/syntaxerr.ml')
-rw-r--r-- | parsing/syntaxerr.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parsing/syntaxerr.ml b/parsing/syntaxerr.ml index 82fcc7745..538166145 100644 --- a/parsing/syntaxerr.ml +++ b/parsing/syntaxerr.ml @@ -30,7 +30,7 @@ let report_error ppf = function then fprintf ppf "Syntax error: '%s' expected, \ the highlighted '%s' might be unmatched" closing opening else begin - fprintf ppf "%aSyntax error: '%s' expected@?" + fprintf ppf "%aSyntax error: '%s' expected@." Location.print closing_loc closing; fprintf ppf "%aThis '%s' might be unmatched" Location.print opening_loc opening |