summaryrefslogtreecommitdiff
path: root/handy.h
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2010-09-23 21:21:20 -0600
committerSteffen Mueller <smueller@cpan.org>2010-09-25 11:15:32 +0200
commit2787a47041484975ffe4cc3d1e3108eb70de1179 (patch)
tree705f8bbb55d42d39b3639514fcddc4b1f24af2a3 /handy.h
parent0c82b6df2d18075fd5ea8fb5ccbcac93b709e0f9 (diff)
downloadperl-2787a47041484975ffe4cc3d1e3108eb70de1179.tar.gz
handy.h: Slightly change the pod
Diffstat (limited to 'handy.h')
-rw-r--r--handy.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/handy.h b/handy.h
index dd4671e3dd..7f826411a7 100644
--- a/handy.h
+++ b/handy.h
@@ -446,32 +446,32 @@ knows about all have 8-bit characters, so most of these functions will return
true for more characters than on ASCII platforms.
=for apidoc Am|bool|isALNUM|char ch
-Returns a boolean indicating whether the C C<char> is an
-alphanumeric character (including underscore) or digit in the platform's native
+Returns a boolean indicating whether the specified character is an
+alphanumeric character (including underscore) in the platform's native
character set.
=for apidoc Am|bool|isALPHA|char ch
-Returns a boolean indicating whether the C C<char> is an
+Returns a boolean indicating whether the specified character is an
alphabetic character in the platform's native character set.
=for apidoc Am|bool|isDIGIT|char ch
-Returns a boolean indicating whether the C C<char> is a
+Returns a boolean indicating whether the specified character is a
digit in the platform's native character set.
=for apidoc Am|bool|isLOWER|char ch
-Returns a boolean indicating whether the C C<char> is a
+Returns a boolean indicating whether the specified character is a
lowercase character in the platform's native character set.
=for apidoc Am|bool|isOCTAL|char ch
-Returns a boolean indicating whether the C C<char> is an
+Returns a boolean indicating whether the specified character is an
octal digit, [0-7] in the platform's native character set.
=for apidoc Am|bool|isSPACE|char ch
-Returns a boolean indicating whether the C C<char> is a
+Returns a boolean indicating whether the specified character is a
whitespace character in the platform's native character set.
=for apidoc Am|bool|isUPPER|char ch
-Returns a boolean indicating whether the C C<char> is an
+Returns a boolean indicating whether the specified character is an
uppercase character in the platform's native character set.
=head1 Character case changing