Skip to content

Commit 6ab3060

Browse files
committed
Minor javadoc improvement
1 parent 175c627 commit 6ab3060

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

cbor/src/main/java/com/fasterxml/jackson/dataformat/cbor/CBORParser.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@ public enum Feature implements FormatFeature
4848
DECODE_USING_STANDARD_NEGATIVE_BIGINT_ENCODING(false),
4949

5050
/**
51-
* Feature that determines how an ` undefined ` value (0xF7) is decoded.
51+
* Feature that determines how an {@code undefined} value ({@code 0xF7}) is decoded.
5252
* <p>
5353
* When enabled, the parser returns {@link JsonToken#VALUE_EMBEDDED_OBJECT} with a
54-
* value of {@code null}, allowing the caller to distinguish `undefined` from actual
54+
* value of {@code null}, allowing the caller to distinguish {@code undefined} from actual
5555
* {@link JsonToken#VALUE_NULL}.
56-
*<p>
57-
* When disabled (default, for backwards compatibility), `undefined` value is
58-
* reported as {@link JsonToken#VALUE_NULL}, maintaining legacy behavior from Jackson 2.10 to 2.19.
56+
* When disabled (default, for backwards compatibility), {@code undefined} value is
57+
* reported as {@link JsonToken#VALUE_NULL}, maintaining legacy behavior
58+
* in use up to Jackson 2.19.
5959
*
6060
* @since 2.20
6161
*/

0 commit comments

Comments
 (0)