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
The following commit(s) were added to refs/heads/master by this push:
new 1eb780244 Fix Javadoc example
1eb780244 is described below
commit 1eb780244fca142fa83a7ce18d76725f617df18a
Author: Gary D. Gregory <[email protected]>
AuthorDate: Sat Sep 6 07:29:55 2025 -0700
Fix Javadoc example
---
src/main/java/org/apache/commons/lang3/CharUtils.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/main/java/org/apache/commons/lang3/CharUtils.java
b/src/main/java/org/apache/commons/lang3/CharUtils.java
index aeebe2d4f..e6553815d 100644
--- a/src/main/java/org/apache/commons/lang3/CharUtils.java
+++ b/src/main/java/org/apache/commons/lang3/CharUtils.java
@@ -230,6 +230,7 @@ public static boolean isAsciiPrintable(final char ch) {
*
* <pre>
* CharUtils.isHex('0') = true
+ * CharUtils.isHex('3') = true
* CharUtils.isHex('9') = true
* CharUtils.isHex('a') = true
* CharUtils.isHex('f') = true
@@ -237,7 +238,7 @@ public static boolean isAsciiPrintable(final char ch) {
* CharUtils.isHex('A') = true
* CharUtils.isHex('F') = true
* CharUtils.isHex('G') = false
- * CharUtils.isHex('3') = false
+ * CharUtils.isHex('#') = false
* CharUtils.isHex('-') = false
* CharUtils.isHex('\n') = false
* CharUtils.isHex('©') = false