From 542654c97f26ccd8156b9946920a2b15b9cdea7b Mon Sep 17 00:00:00 2001 From: Tatu Saloranta Date: Tue, 21 Sep 2021 14:42:02 -0700 Subject: [PATCH] trivial javadoc markup fix --- src/main/java/com/fasterxml/jackson/core/JsonParser.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/fasterxml/jackson/core/JsonParser.java b/src/main/java/com/fasterxml/jackson/core/JsonParser.java index 9b8826e44b..335fd434e7 100644 --- a/src/main/java/com/fasterxml/jackson/core/JsonParser.java +++ b/src/main/java/com/fasterxml/jackson/core/JsonParser.java @@ -2122,7 +2122,7 @@ public boolean getValueAsBoolean(boolean def) throws IOException { * JSON Strings map naturally; scalar values get converted to * their textual representation. * If representation can not be converted to a String value (including structured types - * like Objects and Arrays and null token), default value of + * like Objects and Arrays and {@code null} token), default value of * null will be returned; no exceptions are thrown. * * @return {@link String} value current token is converted to, if possible; {@code null} otherwise @@ -2142,7 +2142,7 @@ public String getValueAsString() throws IOException { * JSON Strings map naturally; scalar values get converted to * their textual representation. * If representation can not be converted to a String value (including structured types - * like Objects and Arrays and null token), specified default value + * like Objects and Arrays and {@code null} token), specified default value * will be returned; no exceptions are thrown. * * @param def Default value to return if conversion to {@code String} is not possible