We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9947d0 commit 1eb7802Copy full SHA for 1eb7802
src/main/java/org/apache/commons/lang3/CharUtils.java
@@ -230,14 +230,15 @@ public static boolean isAsciiPrintable(final char ch) {
230
*
231
* <pre>
232
* CharUtils.isHex('0') = true
233
+ * CharUtils.isHex('3') = true
234
* CharUtils.isHex('9') = true
235
* CharUtils.isHex('a') = true
236
* CharUtils.isHex('f') = true
237
* CharUtils.isHex('g') = false
238
* CharUtils.isHex('A') = true
239
* CharUtils.isHex('F') = true
240
* CharUtils.isHex('G') = false
- * CharUtils.isHex('3') = false
241
+ * CharUtils.isHex('#') = false
242
* CharUtils.isHex('-') = false
243
* CharUtils.isHex('\n') = false
244
* CharUtils.isHex('©') = false
0 commit comments