diff --git a/src/main/java/com/fasterxml/jackson/databind/JsonNode.java b/src/main/java/com/fasterxml/jackson/databind/JsonNode.java index 441dab6238..1ce3b76060 100644 --- a/src/main/java/com/fasterxml/jackson/databind/JsonNode.java +++ b/src/main/java/com/fasterxml/jackson/databind/JsonNode.java @@ -580,7 +580,7 @@ public int asInt(int defaultValue) { * and 1 (true), and Strings are parsed using default Java language integer * parsing rules. *

- * If representation cannot be converted to an long (including structured types + * If representation cannot be converted to a long (including structured types * like Objects and Arrays), * default value of 0 will be returned; no exceptions are thrown. */ @@ -594,7 +594,7 @@ public long asLong() { * and 1 (true), and Strings are parsed using default Java language integer * parsing rules. *

- * If representation cannot be converted to an long (including structured types + * If representation cannot be converted to a long (including structured types * like Objects and Arrays), * specified defaultValue will be returned; no exceptions are thrown. */