From 962b9c9a85384f358258725767d5ae5a2784a0e8 Mon Sep 17 00:00:00 2001 From: albert-github Date: Sat, 1 Jun 2019 14:01:20 +0200 Subject: Correction warning message When there is a problem with a backticjk comment block we can get the message: reached end of file while inside a ````' block! this is a bit unreadable / non understandable as we see see 4 backticks followed by a single quote, it woulb be more readable when we get reached end of file while inside a '```' block! --- src/scanner.l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scanner.l b/src/scanner.l index f94e4f8..2634485 100644 --- a/src/scanner.l +++ b/src/scanner.l @@ -6771,7 +6771,7 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP}) } <> { warn(yyFileName,yyLineNr, - "reached end of file while inside a `%s' block!\n" + "reached end of file while inside a '%s' block!\n" "The command that should end the block seems to be missing!\n", docBlockName.data()); yyterminate(); -- cgit v0.12