summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
authorKarl Williamson <khw@khw-desktop.(none)>2010-03-14 14:22:26 -0600
committerJesse Vincent <jesse@bestpractical.com>2010-03-14 21:15:33 +0000
commit7acb582f8809d5982cf0b937450712b60e1e9f47 (patch)
tree7399a56e640f2dc02326b46aed66a8fc2be6a709 /pod
parent6652595ab42907ff74b424c9c23cfc008228ab9d (diff)
downloadperl-7acb582f8809d5982cf0b937450712b60e1e9f47.tar.gz
A few small fixes to perl5120delta.pod
Diffstat (limited to 'pod')
-rw-r--r--pod/perl5120delta.pod14
1 files changed, 7 insertions, 7 deletions
diff --git a/pod/perl5120delta.pod b/pod/perl5120delta.pod
index 50fc42ca85..8c46898e02 100644
--- a/pod/perl5120delta.pod
+++ b/pod/perl5120delta.pod
@@ -2061,14 +2061,14 @@ C<charnames> handler returns malformed UTF-8.
=item *
If an unresolved named character or sequence was encountered when compiling a
-regex pattern then the fatal error C<\\N{NAME} must be resolved by the lexer>
+regex pattern then the fatal error C<\N{NAME} must be resolved by the lexer>
is now produced. This can happen, for example, when using a single-quotish
-context like C<$re = '\N{SPACE}'; $re;>. See L<perldiag> for more examples of
+context like C<$re = '\N{SPACE}'; /$re/;>. See L<perldiag> for more examples of
how the lexer can get bypassed.
=item *
-C<Invalid hexadecimal number in \\N{U+...}> is a new fatal error triggered when
+C<Invalid hexadecimal number in \N{U+...}> is a new fatal error triggered when
the character constant represented by C<...> is not a valid hexadecimal
number.
@@ -2076,14 +2076,14 @@ number.
The new meaning of C<\N> as C<[^\n]> is not valid in a bracketed character
class, just like C<.> in a character class loses its special meaning, and will
-cause the fatal error C<\\N in a character class must be a named character: \\N{...}>.
+cause the fatal error C<\N in a character class must be a named character: \N{...}>.
=item *
The rules on what is legal for the C<...> in C<\N{...}> have been tightened
up so that unless the C<...> begins with an alphabetic character and continues
with a combination of alphanumerics, dashes, spaces, parentheses or colons
-then the warning C<Deprecated character(s) in \\N{...} starting at '%s'> is
+then the warning C<Deprecated character(s) in \N{...} starting at '%s'> is
now issued.
=item *
@@ -2221,7 +2221,7 @@ first character returned by \N{} in character class> will be issued.
=item *
-The warning C<Missing right brace on \\N{} or unescaped left brace after \\N.
+The warning C<Missing right brace on \N{} or unescaped left brace after \N.
Assuming the latter> will be issued if Perl encounters a C<\N{> but doesn't
find a matching C<}>. In this case Perl doesn't know if it was mistakenly
omitted, or if "match non-newline" followed by "match a C<{>" was desired.
@@ -2680,7 +2680,7 @@ or cause the following assertion failure [RT #60508]:
=item *
-Perl now includes previously missing files from the Unicode 5.1 Character Database.
+Perl now includes previously missing files from the Unicode Character Database.
=item *