File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
module/jsonurl-core/src/main/java/org/jsonurl Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff 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 );
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 33import java .util .EnumSet ;
44
55/**
6- * An enumeration of JSON-> URL value types.
6+ * An enumeration of JSON> URL value types.
77 */
88public enum ValueType {
99 NULL (true ),
You can’t perform that action at this time.
0 commit comments