diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-06-29 16:47:32 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-06-29 16:47:32 +0000 |
commit | f9a3ff1adf732e369e54b362e55660c9bb204bd4 (patch) | |
tree | 7d014b83a14450bd20c96c5b258e2e20d924a34d /pod/perlre.pod | |
parent | 8933a7400a697205027e8ea8cd44a40f2da3d4ed (diff) | |
download | perl-f9a3ff1adf732e369e54b362e55660c9bb204bd4.tar.gz |
Another typo fix.
p4raw-id: //depot/perl@28452
Diffstat (limited to 'pod/perlre.pod')
-rw-r--r-- | pod/perlre.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlre.pod b/pod/perlre.pod index 78ac35821d..61720db906 100644 --- a/pod/perlre.pod +++ b/pod/perlre.pod @@ -70,8 +70,8 @@ your regular expression into (slightly) more readable parts. The C<#> character is also treated as a metacharacter introducing a comment, just as in ordinary Perl code. This also means that if you want real whitespace or C<#> characters in the pattern (outside a character -class, where they are unaffected by C</x>), that you'll either have to -escape them (using backslashes or C<\Q \E>) or encode them using octal +class, where they are unaffected by C</x>), then you'll either have to +escape them (using backslashes or C<\Q...\E>) or encode them using octal or hex escapes. Taken together, these features go a long way towards making Perl's regular expressions more readable. Note that you have to be careful not to include the pattern delimiter in the comment--perl has |