Skip to content

Commit 1eb7802

Browse files
committed
Fix Javadoc example
1 parent f9947d0 commit 1eb7802

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/org/apache/commons/lang3/CharUtils.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,14 +230,15 @@ public static boolean isAsciiPrintable(final char ch) {
230230
*
231231
* <pre>
232232
* CharUtils.isHex('0') = true
233+
* CharUtils.isHex('3') = true
233234
* CharUtils.isHex('9') = true
234235
* CharUtils.isHex('a') = true
235236
* CharUtils.isHex('f') = true
236237
* CharUtils.isHex('g') = false
237238
* CharUtils.isHex('A') = true
238239
* CharUtils.isHex('F') = true
239240
* CharUtils.isHex('G') = false
240-
* CharUtils.isHex('3') = false
241+
* CharUtils.isHex('#') = false
241242
* CharUtils.isHex('-') = false
242243
* CharUtils.isHex('\n') = false
243244
* CharUtils.isHex('&copy;') = false

0 commit comments

Comments
 (0)