Skip to content

Commit 2b43b5d

Browse files
committed
Javadoc improvement wrt #4904
1 parent e8b456a commit 2b43b5d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/main/java/com/fasterxml/jackson/databind/DeserializationFeature.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -370,15 +370,15 @@ public enum DeserializationFeature implements ConfigFeature
370370

371371
/**
372372
* Feature that can be enabled to allow JSON empty String
373-
* value ("") to be bound as `null` for POJOs and other structured
373+
* value ({@code ""}) to be bound as {@code null} for POJOs and other structured
374374
* values ({@link java.util.Map}s, {@link java.util.Collection}s).
375-
* If disabled, standard POJOs can only be bound from JSON `null` or
375+
* If disabled, standard POJOs can only be bound from JSON {@code null} or
376376
* JSON Object (standard meaning that no custom deserializers or
377377
* constructors are defined; both of which can add support for other
378378
* kinds of JSON values); if enabled, empty JSON String can be taken
379379
* to be equivalent of JSON null.
380380
*<p>
381-
* NOTE: this does NOT apply to scalar values such as booleans, numbers
381+
* NOTE: this does NOT apply to scalar values such as Strings, booleans, numbers
382382
* and date/time types;
383383
* whether these can be coerced depends on
384384
* {@link MapperFeature#ALLOW_COERCION_OF_SCALARS}.
@@ -389,13 +389,13 @@ public enum DeserializationFeature implements ConfigFeature
389389

390390
/**
391391
* Feature that can be enabled to allow empty JSON Array
392-
* value (that is, <code>[ ]</code>) to be bound to POJOs (and
393-
* with 2.9, other values too) as `null`.
394-
* If disabled, standard POJOs can only be bound from JSON `null` or
392+
* value (that is, {@code[ ]} to be bound to POJOs (and
393+
* with 2.9, other values too) as {@code null}.
394+
* If disabled, standard POJOs can only be bound from JSON {@code null} or
395395
* JSON Object (standard meaning that no custom deserializers or
396396
* constructors are defined; both of which can add support for other
397397
* kinds of JSON values); if enabled, empty JSON Array will be taken
398-
* to be equivalent of JSON null.
398+
* to be equivalent of JSON {@code null}.
399399
*<p>
400400
* Feature is disabled by default.
401401
*

0 commit comments

Comments
 (0)