From 965e587de313e1d5533cfcd394643bb627bd623a Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Thu, 30 Jan 2025 20:17:39 -0800 Subject: [PATCH] Polish --- .../src/docs/antora/modules/reference/pages/features/json.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/features/json.adoc b/spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/features/json.adoc index 24d9d18668b..3fd663dd886 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/features/json.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/features/json.adoc @@ -37,7 +37,7 @@ Because javadoc:org.springframework.boot.jackson.JsonComponent[format=annotation Spring Boot also provides javadoc:org.springframework.boot.jackson.JsonObjectSerializer[] and javadoc:org.springframework.boot.jackson.JsonObjectDeserializer[] base classes that provide useful alternatives to the standard Jackson versions when serializing objects. See javadoc:org.springframework.boot.jackson.JsonObjectSerializer[] and javadoc:org.springframework.boot.jackson.JsonObjectDeserializer[] in the API documentation for details. -The example above can be rewritten to use javadoc:org.springframework.boot.jackson.JsonObjectSerializer[] / javadoc:org.springframework.boot.jackson.JsonObjectDeserializer[] as follows: +The example above can be rewritten to use javadoc:org.springframework.boot.jackson.JsonObjectSerializer[] and javadoc:org.springframework.boot.jackson.JsonObjectDeserializer[] as follows: include-code::object/MyJsonComponent[]