Skip to content

Commit 119e7cd

Browse files
committed
Minor javadoc fixes
1 parent 1928b88 commit 119e7cd

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/main/java/com/fasterxml/jackson/databind/JsonNode.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -753,10 +753,10 @@ public long asLong(long defaultValue) {
753753
/**
754754
* Method that will try to convert value of this node to a Java <b>double</b>.
755755
* Numbers are coerced using default Java rules; booleans convert to 0.0 (false)
756-
* and 1.0 (true), and Strings are parsed using default Java language integer
756+
* and 1.0 (true), and Strings are parsed using default Java language {@code double}
757757
* parsing rules.
758758
*<p>
759-
* If representation cannot be converted to an int (including structured types
759+
* If representation cannot be converted to a {@code double} (including structured types
760760
* like Objects and Arrays),
761761
* default value of <b>0.0</b> will be returned; no exceptions are thrown.
762762
*/
@@ -767,10 +767,10 @@ public double asDouble() {
767767
/**
768768
* Method that will try to convert value of this node to a Java <b>double</b>.
769769
* Numbers are coerced using default Java rules; booleans convert to 0.0 (false)
770-
* and 1.0 (true), and Strings are parsed using default Java language integer
770+
* and 1.0 (true), and Strings are parsed using default Java language {@code double}
771771
* parsing rules.
772772
*<p>
773-
* If representation cannot be converted to an int (including structured types
773+
* If representation cannot be converted to a {@code double} (including structured types
774774
* like Objects and Arrays),
775775
* specified <b>defaultValue</b> will be returned; no exceptions are thrown.
776776
*/

src/main/java/com/fasterxml/jackson/databind/introspect/AnnotatedClass.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public final class AnnotatedClass
7777
final protected Class<?> _primaryMixIn;
7878

7979
/**
80-
* Flag that indicates whether (fulll) annotation resolution should
80+
* Flag that indicates whether (full) annotation resolution should
8181
* occur: starting with 2.11 is disabled for JDK container types.
8282
*
8383
* @since 2.11

0 commit comments

Comments
 (0)