summaryrefslogtreecommitdiff
path: root/handy.h
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2010-09-23 21:12:51 -0600
committerSteffen Mueller <smueller@cpan.org>2010-09-25 11:15:32 +0200
commit0c82b6df2d18075fd5ea8fb5ccbcac93b709e0f9 (patch)
treef00a59c2b76977a9151a5a9ba1104574fbed8332 /handy.h
parent25d1bb793c74dbeadfb79bec17165e4c3970f3ba (diff)
downloadperl-0c82b6df2d18075fd5ea8fb5ccbcac93b709e0f9.tar.gz
handy.h: alphabetize pod entries
There are a number of macros missing from the documentation. This helps me figure out which ones.
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 e2bb3d6ed6..dd4671e3dd 100644
--- a/handy.h
+++ b/handy.h
@@ -454,26 +454,26 @@ character set.
Returns a boolean indicating whether the C C<char> is an
alphabetic character 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
-whitespace 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
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
+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
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
+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
uppercase character 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
-lowercase character in the platform's native character set.
-
=head1 Character case changing
=for apidoc Am|char|toUPPER|char ch