From d13f1e243ff5ac94ecfc64f2bd81ae5d1c33bfcc Mon Sep 17 00:00:00 2001 From: Michael Schmidt Date: Mon, 4 Jun 2018 14:47:16 +0200 Subject: Various improvements in the wording of diagnostics. Fix various typos in diagnostic messages and unified wording and capitalization. Bug 23850 --- lib/Readconfig.mll | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/Readconfig.mll') diff --git a/lib/Readconfig.mll b/lib/Readconfig.mll index e71c8fb7..7b98255e 100644 --- a/lib/Readconfig.mll +++ b/lib/Readconfig.mll @@ -43,9 +43,9 @@ let error msg lexbuf = lexbuf.lex_curr_p.pos_lnum, msg))) -let ill_formed_line lexbuf = error "Ill-formed line" lexbuf -let unterminated_quote lexbuf = error "Unterminated quote" lexbuf -let lone_backslash lexbuf = error "Lone \\ (backslash) at end of file" lexbuf +let ill_formed_line lexbuf = error "ill-formed line" lexbuf +let unterminated_quote lexbuf = error "unterminated quote" lexbuf +let lone_backslash lexbuf = error "lone \\ (backslash) at end of file" lexbuf } -- cgit