@@ -958,7 +958,7 @@ public int fromHexDigits(CharSequence string) {
958
958
* Returns the {@code int} value parsed from a string range of up to eight hexadecimal
959
959
* characters.
960
960
* The characters in the range {@code fromIndex} to {@code toIndex}, exclusive,
961
- * are parsed are parsed from most significant to least significant
961
+ * are parsed from most significant to least significant
962
962
* using {@link #fromHexDigit(int)} to form an unsigned value.
963
963
* The value is zero extended to 32 bits and is returned as an {@code int}.
964
964
* The delimiter, prefix, suffix, and uppercase parameters are not used.
@@ -996,7 +996,6 @@ public int fromHexDigits(CharSequence string, int fromIndex, int toIndex) {
996
996
* The hexadecimal characters are parsed from most significant to least significant
997
997
* using {@link #fromHexDigit(int)} to form an unsigned value.
998
998
* The value is zero extended to 64 bits and is returned as a {@code long}.
999
-
1000
999
* The delimiter, prefix, suffix, and uppercase parameters are not used.
1001
1000
*
1002
1001
* @apiNote
@@ -1026,7 +1025,7 @@ public long fromHexDigitsToLong(CharSequence string) {
1026
1025
* Returns the long value parsed from a string range of up to sixteen hexadecimal
1027
1026
* characters.
1028
1027
* The characters in the range {@code fromIndex} to {@code toIndex}, exclusive,
1029
- * parsed from most significant to least significant
1028
+ * are parsed from most significant to least significant
1030
1029
* using {@link #fromHexDigit(int)} to form an unsigned value.
1031
1030
* The value is zero extended to 64 bits and is returned as a {@code long}.
1032
1031
* The delimiter, prefix, suffix, and uppercase parameters are not used.
0 commit comments