diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-01-17 08:42:04 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-01-17 08:42:04 +0000 |
commit | f244e06d4740a118d980f79807cb4f393cc3087b (patch) | |
tree | 8cc6f98db710c9cde6a97150d908da967f719e88 /pod/perlre.pod | |
parent | 2a0d5fe01f4bf1c3ae5922fce6feb5c6e128d1b7 (diff) | |
download | perl-f244e06d4740a118d980f79807cb4f393cc3087b.tar.gz |
a few doc typos
p4raw-id: //depot/perl@2619
Diffstat (limited to 'pod/perlre.pod')
-rw-r--r-- | pod/perlre.pod | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pod/perlre.pod b/pod/perlre.pod index d3d4500ce4..1df6ba3d8a 100644 --- a/pod/perlre.pod +++ b/pod/perlre.pod @@ -169,7 +169,8 @@ In addition, Perl defines the following: \D Match a non-digit character \pP Match P, named property. Use \p{Prop} for longer names. \PP Match non-P - \X Match eXtended Unicode "combining character sequence", \pM\pm* + \X Match eXtended Unicode "combining character sequence", + equivalent to C<(?:\PM\pM*)> \C Match a single C char (octet) even under utf8. A C<\w> matches a single alphanumeric character, not a whole |