perldiag: missing hyphen
authorFather Chrysostomos <sprout@cpan.org>
Mon, 14 Feb 2011 06:03:31 +0000 (22:03 -0800)
committerFather Chrysostomos <sprout@cpan.org>
Mon, 14 Feb 2011 06:03:31 +0000 (22:03 -0800)
pod/perldiag.pod

index cf1abed..573e03d 100644 (file)
@@ -2768,7 +2768,7 @@ what you want.
 (F) When compiling a regex pattern, an unresolved named character or
 sequence was encountered.  This can happen in any of several ways that
 bypass the lexer, such as using single-quotish context, or an extra
-backslash in double quotish:
+backslash in double-quotish:
 
     $re = '\N{SPACE}'; # Wrong!
     $re = "\\N{SPACE}";        # Wrong!