Skip to content

Commit e267036

Browse files
authored
Corrected the method name in Javadoc examples (#1444)
* Javadoc Correct Javadoc return type description * Javadoc Corrected the method name in Javadoc examples
1 parent 8262fd8 commit e267036

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

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

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -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('&copy;') = 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('&copy;') = false
244244
* </pre>
245245
*
246246
* @param ch the character to test.

0 commit comments

Comments
 (0)