This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git

commit 5a5415dd1c5095970208ac69816c692292a4bf74
Author: Gary D. Gregory <garydgreg...@gmail.com>
AuthorDate: Sun Jun 15 08:02:28 2025 -0400

    Javadoc
---
 src/main/java/org/apache/commons/lang3/CharUtils.java | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/src/main/java/org/apache/commons/lang3/CharUtils.java 
b/src/main/java/org/apache/commons/lang3/CharUtils.java
index 3b3637f9d..ed90518cd 100644
--- a/src/main/java/org/apache/commons/lang3/CharUtils.java
+++ b/src/main/java/org/apache/commons/lang3/CharUtils.java
@@ -78,7 +78,7 @@ public static int compare(final char x, final char y) {
     }
 
     /**
-     * Checks whether the character is ASCII 7 bit.
+     * Tests whether the character is ASCII 7 bit.
      *
      * <pre>
      *   CharUtils.isAscii('a')  = true
@@ -97,7 +97,7 @@ public static boolean isAscii(final char ch) {
     }
 
     /**
-     * Checks whether the character is ASCII 7 bit alphabetic.
+     * Tests whether the character is ASCII 7 bit alphabetic.
      *
      * <pre>
      *   CharUtils.isAsciiAlpha('a')  = true
@@ -116,7 +116,7 @@ public static boolean isAsciiAlpha(final char ch) {
     }
 
     /**
-     * Checks whether the character is ASCII 7 bit alphabetic lower case.
+     * Tests whether the character is ASCII 7 bit alphabetic lower case.
      *
      * <pre>
      *   CharUtils.isAsciiAlphaLower('a')  = true
@@ -135,7 +135,7 @@ public static boolean isAsciiAlphaLower(final char ch) {
     }
 
     /**
-     * Checks whether the character is ASCII 7 bit numeric.
+     * Tests whether the character is ASCII 7 bit numeric.
      *
      * <pre>
      *   CharUtils.isAsciiAlphanumeric('a')  = true
@@ -154,7 +154,7 @@ public static boolean isAsciiAlphanumeric(final char ch) {
     }
 
     /**
-     * Checks whether the character is ASCII 7 bit alphabetic upper case.
+     * Tests whether the character is ASCII 7 bit alphabetic upper case.
      *
      * <pre>
      *   CharUtils.isAsciiAlphaUpper('a')  = false
@@ -173,7 +173,7 @@ public static boolean isAsciiAlphaUpper(final char ch) {
     }
 
     /**
-     * Checks whether the character is ASCII 7 bit control.
+     * Tests whether the character is ASCII 7 bit control.
      *
      * <pre>
      *   CharUtils.isAsciiControl('a')  = false
@@ -192,7 +192,7 @@ public static boolean isAsciiControl(final char ch) {
     }
 
     /**
-     * Checks whether the character is ASCII 7 bit numeric.
+     * Tests whether the character is ASCII 7 bit numeric.
      *
      * <pre>
      *   CharUtils.isAsciiNumeric('a')  = false
@@ -211,7 +211,7 @@ public static boolean isAsciiNumeric(final char ch) {
     }
 
     /**
-     * Checks whether the character is ASCII 7 bit printable.
+     * Tests whether the character is ASCII 7 bit printable.
      *
      * <pre>
      *   CharUtils.isAsciiPrintable('a')  = true

Reply via email to