summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2015-05-12 12:04:08 -0600
committerKarl Williamson <khw@cpan.org>2015-05-12 12:14:46 -0600
commit93780ae6e77ec84aa216d0b99b8da2e3c7b9da8a (patch)
treeda1fee53be9a9a502209439cab51e16eed5f31ec
parent4ec8e6f0bc93c0ccf62afe4e4484405f252fec00 (diff)
downloadperl-93780ae6e77ec84aa216d0b99b8da2e3c7b9da8a.tar.gz
perldelta: Nits
-rw-r--r--pod/perldelta.pod8
1 files changed, 4 insertions, 4 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index d5d26ee201..eed51d1901 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -350,7 +350,7 @@ expressions). See L<perlrecharclass/Extended Bracketed Character Classes>.
Really old Perl let you omit the C<@> on array names and the C<%> on hash
names in some spots. This has issued a deprecation warning since Perl
-5.0, and is no longer permitted.
+5.000, and is no longer permitted.
=head2 C<"$!"> text is now in English outside C<"use locale"> scope
@@ -1343,7 +1343,7 @@ the endpoints are specified by
L<C<\N{...}>|perlrecharclass/Character Ranges>, but the meaning may
still not be obvious.)
The stricter rules require that ranges that start or stop with an ASCII
-character that is not a control have all their endpoints be the literal
+character that is not a control have all their endpoints be a literal
character, and not some escape sequence (like C<"\x41">), and the ranges
must be all digits, or all uppercase letters, or all lowercase letters.
@@ -2370,14 +2370,14 @@ L<[perl #123218]|https://rt.perl.org/Ticket/Display.html?id=123218>.
=item *
In a regular expression pattern, a POSIX class, like C<[:ascii:]>, must
-be inside a bracketed character class, like C</qr[[:ascii:]]>. A
+be inside a bracketed character class, like C<qr/[[:ascii:]]/>. A
warning is issued when something looking like a POSIX class is not
inside a bracketed class. That warning wasn't getting generated when
the POSIX class was negated: C<[:^ascii:]>. This is now fixed.
=item *
-Fix a couple of other size calculation overflows.
+Fix a couple of size calculation overflows.
L<[perl #123554]|https://rt.perl.org/Ticket/Display.html?id=123554>.
=item *