summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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