aboutsummaryrefslogtreecommitdiff
path: root/src/main/java
diff options
context:
space:
mode:
authorTatu Saloranta <tatu.saloranta@iki.fi>2020-06-14 15:58:04 -0700
committerTatu Saloranta <tatu.saloranta@iki.fi>2020-06-14 15:58:04 -0700
commit70b273cf7750d9b3405df3dcba520a7e03a30853 (patch)
treee58442ec5aa5faadf1ef75784fc354926ec220c4 /src/main/java
parent3d5156ba556ddabbf227b23916349786b6d9c4d6 (diff)
downloadjackson-databind-70b273cf7750d9b3405df3dcba520a7e03a30853.tar.gz
Fixed #2766 (wrong article in javadoc comment)
Diffstat (limited to 'src/main/java')
-rw-r--r--src/main/java/com/fasterxml/jackson/databind/JsonNode.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/com/fasterxml/jackson/databind/JsonNode.java b/src/main/java/com/fasterxml/jackson/databind/JsonNode.java
index 646d54737..0c94ca294 100644
--- a/src/main/java/com/fasterxml/jackson/databind/JsonNode.java
+++ b/src/main/java/com/fasterxml/jackson/databind/JsonNode.java
@@ -598,7 +598,7 @@ public abstract class JsonNode
* and 1 (true), and Strings are parsed using default Java language integer
* parsing rules.
*<p>
- * 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 <b>0</b> will be returned; no exceptions are thrown.
*/
@@ -612,7 +612,7 @@ public abstract class JsonNode
* and 1 (true), and Strings are parsed using default Java language integer
* parsing rules.
*<p>
- * 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 <b>defaultValue</b> will be returned; no exceptions are thrown.
*/