@@ -229,18 +229,18 @@ public static boolean isAsciiPrintable(final char ch) {
229229 * Tests whether a character is a hexadecimal character.
230230 *
231231 * <pre>
232- * CharUtils.isAsciiPrintable ('0') = true
233- * CharUtils.isAsciiPrintable ('9') = true
234- * CharUtils.isAsciiPrintable ('a') = true
235- * CharUtils.isAsciiPrintable ('f') = true
236- * CharUtils.isAsciiPrintable ('g') = false
237- * CharUtils.isAsciiPrintable ('A') = true
238- * CharUtils.isAsciiPrintable ('F') = true
239- * CharUtils.isAsciiPrintable ('G') = false
240- * CharUtils.isAsciiPrintable ('3') = false
241- * CharUtils.isAsciiPrintable ('-') = false
242- * CharUtils.isAsciiPrintable ('\n') = false
243- * CharUtils.isAsciiPrintable ('©') = false
232+ * CharUtils.isHex ('0') = true
233+ * CharUtils.isHex ('9') = true
234+ * CharUtils.isHex ('a') = true
235+ * CharUtils.isHex ('f') = true
236+ * CharUtils.isHex ('g') = false
237+ * CharUtils.isHex ('A') = true
238+ * CharUtils.isHex ('F') = true
239+ * CharUtils.isHex ('G') = false
240+ * CharUtils.isHex ('3') = false
241+ * CharUtils.isHex ('-') = false
242+ * CharUtils.isHex ('\n') = false
243+ * CharUtils.isHex ('©') = false
244244 * </pre>
245245 *
246246 * @param ch the character to test.
0 commit comments