diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2002-07-04 12:01:21 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2002-07-04 12:01:21 +0000 |
commit | 77b96956cefc8195e6119c16a122f7afbc9f0a51 (patch) | |
tree | 7139def8a2644d56d7b3100449ab8f1f2be13b06 | |
parent | 1feb1812070a7e60b7ba9bdbf416adcf10c7b764 (diff) | |
download | perl-77b96956cefc8195e6119c16a122f7afbc9f0a51.tar.gz |
Typos and missing warning categories.
p4raw-id: //depot/perl@17399
-rw-r--r-- | pod/perldiag.pod | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod index 10b77c9c53..f57fbc06f2 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -689,11 +689,11 @@ editor will have a way to help you find these characters. =item Can't find %s property definition %s -(F) You may have tried to use C<\p> which means a Unicode property for -example \p{Lu} is all uppercase letters. if you did mean to use a +(F) You may have tried to use C<\p> which means a Unicode property (for +example C<\p{Lu}> is all uppercase letters). If you did mean to use a Unicode property, see L<perlunicode> for the list of known properties. If you didn't mean to use a Unicode property, escape the C<\p>, either -C<\\p> (just the C<\p>) or by C<\Q\p> (the rest of the string, until +by C<\\p> (just the C<\p>) or by C<\Q\p> (the rest of the string, until possible C<\E>). =item Can't fork @@ -4134,7 +4134,7 @@ defined B<awk> feature. Use an explicit printf() or sprintf() instead. =item Use of reference "%s" as array index -(W) You tried to use a reference as an array index; this probably +(W misc) You tried to use a reference as an array index; this probably isn't what you mean, because references in numerical context tend to be huge numbers, and so usually indicates programmer error. @@ -4293,7 +4293,7 @@ the version number. =item v-string in use/require is non-portable -(W) The use of v-strings is non-portable to older, pre-5.6, Perls. +(W portable) The use of v-strings is non-portable to older, pre-5.6, Perls. If you want your scripts to be backward portable, use the floating point version number: for example, instead of C<use 5.6.1> say C<use 5.006_001>. This of course won't help: the older Perls |