Skip to content

Commit b990570

Browse files
committed
Chore: Fix broken javadoc references
1 parent 3f96202 commit b990570

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

module/jsonurl-core/src/main/java/org/jsonurl/NumberBuilder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,7 @@ public static final double toDouble(NumberText t) {
543543
}
544544

545545
/**
546-
* Parse the given NumberText as a {@link java.math.BigDecmial}.
546+
* Parse the given NumberText as a {@link java.math.BigDecimal}.
547547
*/
548548
public static final BigDecimal toBigDecimal(NumberText t) {
549549
char[] s = toChars(
@@ -555,7 +555,7 @@ public static final BigDecimal toBigDecimal(NumberText t) {
555555
}
556556

557557
/**
558-
* Parse the given NumberText as a {@link java.math.BigDecmial}.
558+
* Parse the given NumberText as a {@link java.math.BigDecimal}.
559559
*/
560560
public BigDecimal toBigDecimal() {
561561
return toBigDecimal(this);

module/jsonurl-core/src/main/java/org/jsonurl/ValueFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ default B getBoolean(boolean b) {
220220

221221
/**
222222
* Test if the given {@code value} has the given {@code type}.
223-
* This simply calls {@link #isValid(EnumSet, V)
223+
* This simply calls {@link #isValid(EnumSet, Object)
224224
* isValid(EnumSet.of(type), value)}.
225225
* @param type allowed type
226226
* @param value value to test

module/jsonurl-core/src/main/java/org/jsonurl/ValueType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import java.util.EnumSet;
44

55
/**
6-
* An enumeration of JSON->URL value types.
6+
* An enumeration of JSON>URL value types.
77
*/
88
public enum ValueType {
99
NULL(true),

0 commit comments

Comments
 (0)