summaryrefslogtreecommitdiff
path: root/pod/perlretut.pod
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-05-28 07:29:12 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-05-28 07:29:12 +0000
commit36bbe248096ab718da92e52c9927b81877a3d388 (patch)
tree5e1bb9dc4c234c751e80641edf24939f7b07cd64 /pod/perlretut.pod
parent23724483b0ae0f947e5099eec2b292e01c1fb958 (diff)
downloadperl-36bbe248096ab718da92e52c9927b81877a3d388.tar.gz
fix places that mean C<"word" character> but say C<alphanumeric
character> p4raw-id: //depot/perl@6130
Diffstat (limited to 'pod/perlretut.pod')
-rw-r--r--pod/perlretut.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlretut.pod b/pod/perlretut.pod
index 5ff4298012..66f8179ab6 100644
--- a/pod/perlretut.pod
+++ b/pod/perlretut.pod
@@ -344,7 +344,7 @@ become the svelte C<[0-9]> and C<[a-z]>. Some examples are
/[0-9bx-z]aa/; # matches '0aa', ..., '9aa',
# 'baa', 'xaa', 'yaa', or 'zaa'
/[0-9a-fA-F]/; # matches a hexadecimal digit
- /[0-9a-zA-Z_]/; # matches an alphanumeric character,
+ /[0-9a-zA-Z_]/; # matches a "word" character,
# like those in a perl variable name
If C<'-'> is the first or last character in a character class, it is