summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2015-02-20 10:12:52 -0700
committerKarl Williamson <khw@cpan.org>2015-02-21 12:48:04 -0700
commitea64e14e408c0d0482e6bd50ccd48fa0d5977e9d (patch)
tree0dcd11b56482345c950e6e280c1ce6f1d06ef04e
parent6e9048c44fd0fcc1018756f69c09741889e684a9 (diff)
downloadperl-ea64e14e408c0d0482e6bd50ccd48fa0d5977e9d.tar.gz
perlunitut, perlreref: Nits
Spotted by Tom Christiansen
-rw-r--r--pod/perlreref.pod1
-rw-r--r--pod/perlunitut.pod4
2 files changed, 3 insertions, 2 deletions
diff --git a/pod/perlreref.pod b/pod/perlreref.pod
index bc4bef76f4..de1b0d677e 100644
--- a/pod/perlreref.pod
+++ b/pod/perlreref.pod
@@ -245,6 +245,7 @@ There is no quantifier C<{,n}>. That's interpreted as a literal string.
(?<name>...) Named capture
(?'name'...) Named capture
(?P<name>...) Named capture (python syntax)
+ (?[...]) Extended bracketed character class
(?{ code }) Embedded code, return value becomes $^R
(??{ code }) Dynamic regex, return value used as regex
(?N) Recurse into subpattern number N
diff --git a/pod/perlunitut.pod b/pod/perlunitut.pod
index 9e5af04ec7..0ac91e0811 100644
--- a/pod/perlunitut.pod
+++ b/pod/perlunitut.pod
@@ -56,8 +56,8 @@ the same thing, but they're not. There are more Unicode encodings, but much of
the world has standardized on UTF-8.
UTF-8 treats the first 128 codepoints, 0..127, the same as ASCII. They take
-only one byte per character. All other characters are encoded as two or more
-(up to six) bytes using a complex scheme. Fortunately, Perl handles this for
+only one byte per character. All other characters are encoded as two to
+four bytes using a complex scheme. Fortunately, Perl handles this for
us, so we don't have to worry about this.
=head3 Text strings (character strings)