diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-23 12:14:15 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-23 12:14:15 +0000 |
commit | f79b30955198f840af4394fc38877ab5d06cc758 (patch) | |
tree | 029bccd91dcdaa40b997dfb38eac2242f6b5156a /pod/perlre.pod | |
parent | 36a80aa941133b2d90c7d598f79e7baefcfaf8f4 (diff) | |
download | perl-f79b30955198f840af4394fc38877ab5d06cc758.tar.gz |
Fix for ID 20010619.003, the [[:print:]] is not supposed
to match the whole isprint(), only the space character.
p4raw-id: //depot/perl@10855
Diffstat (limited to 'pod/perlre.pod')
-rw-r--r-- | pod/perlre.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlre.pod b/pod/perlre.pod index 5fd545f605..61907f8a48 100644 --- a/pod/perlre.pod +++ b/pod/perlre.pod @@ -268,7 +268,7 @@ Any alphanumeric or punctuation (special) character. =item print -Any alphanumeric or punctuation (special) character or space. +Any alphanumeric or punctuation (special) character or the space character. =item punct |