Skip to content

Commit

Permalink
trivial javadoc markup fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Sep 21, 2021
1 parent c3b1039 commit 542654c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/fasterxml/jackson/core/JsonParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -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
* <b>null</b> will be returned; no exceptions are thrown.
*
* @return {@link String} value current token is converted to, if possible; {@code null} otherwise
Expand All @@ -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
Expand Down

0 comments on commit 542654c

Please sign in to comment.