From 930ec51968e3b4df841af2b0cbc9b59f7457d239 Mon Sep 17 00:00:00 2001 From: Pascal Verdage Date: Tue, 28 Jan 2020 10:58:16 +0100 Subject: [PATCH] Fix typo See gh-19956 --- .../src/main/asciidoc/appendix-configuration-metadata.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/appendix-configuration-metadata.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/appendix-configuration-metadata.adoc index 7e1a4e8094e..86672bee8ce 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/appendix-configuration-metadata.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/appendix-configuration-metadata.adoc @@ -153,7 +153,7 @@ The JSON object contained in the `properties` array can contain the attributes d | `type` | String -| The full signature of the data type of the property (for example, `java.lang.String`) but also a full generic type (such as `java.util.Map`). +| The full signature of the data type of the property (for example, `java.lang.String`) but also a full generic type (such as `java.util.Map`). You can use this attribute to guide the user as to the types of values that they can enter. For consistency, the type of a primitive is specified by using its wrapper counterpart (for example, `boolean` becomes `java.lang.Boolean`). Note that this class may be a complex type that gets converted from a `String` as values are bound.