@@ -371,15 +371,15 @@ public enum DeserializationFeature implements ConfigFeature
371371
372372 /**
373373 * Feature that can be enabled to allow JSON empty String
374- * value ("" ) to be bound as ` null` for POJOs and other structured
374+ * value ({@code ""} ) to be bound as {@code null} for POJOs and other structured
375375 * values ({@link java.util.Map}s, {@link java.util.Collection}s).
376- * If disabled, standard POJOs can only be bound from JSON ` null` or
376+ * If disabled, standard POJOs can only be bound from JSON {@code null} or
377377 * JSON Object (standard meaning that no custom deserializers or
378378 * constructors are defined; both of which can add support for other
379379 * kinds of JSON values); if enabled, empty JSON String can be taken
380380 * to be equivalent of JSON null.
381381 *<p>
382- * NOTE: this does NOT apply to scalar values such as booleans, numbers
382+ * NOTE: this does NOT apply to scalar values such as Strings, booleans, numbers
383383 * and date/time types;
384384 * whether these can be coerced depends on
385385 * {@link MapperFeature#ALLOW_COERCION_OF_SCALARS}.
@@ -390,13 +390,13 @@ public enum DeserializationFeature implements ConfigFeature
390390
391391 /**
392392 * Feature that can be enabled to allow empty JSON Array
393- * value (that is, < code> [ ]</code>) to be bound to POJOs (and
394- * with 2.9, other values too) as ` null` .
395- * If disabled, standard POJOs can only be bound from JSON ` null` or
393+ * value (that is, {@ code[ ]} to be bound to POJOs (and
394+ * with 2.9, other values too) as {@code null} .
395+ * If disabled, standard POJOs can only be bound from JSON {@code null} or
396396 * JSON Object (standard meaning that no custom deserializers or
397397 * constructors are defined; both of which can add support for other
398398 * kinds of JSON values); if enabled, empty JSON Array will be taken
399- * to be equivalent of JSON null.
399+ * to be equivalent of JSON {@code null} .
400400 *<p>
401401 * Feature is disabled by default.
402402 *
0 commit comments