summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl_checker.src/lexer.mll2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl_checker.src/lexer.mll b/perl_checker.src/lexer.mll
index f90ed25..b8f7969 100644
--- a/perl_checker.src/lexer.mll
+++ b/perl_checker.src/lexer.mll
@@ -657,7 +657,7 @@ rule token = parse
let pos = start, end_ in
if String.contains opts 'e' && sum (List.map (fun (s, _) -> count_chars_in_string s '"') s2) > 2 then
die lexbuf ("do not write so complicated things in the eval part of s///,\n" ^
- "i generate wrong warnings for things like s/xxx/die \"yyy \\\"zzz\\\" \"/")
+ "i generate wrong warnings for things like s/xxx/die \"yyy \\\"zzz\\\" \"/") ;
check_multi_line_delimited_string (Some opts) pos ;
PATTERN_SUBST(s1, s2, opts, pos)
}