From cb811842916e477e0558962fe1ee087288df965f Mon Sep 17 00:00:00 2001 From: Alessandro Falappa Date: Fri, 20 Sep 2019 08:55:03 +0200 Subject: [PATCH] Fix typo in configuration metadata appendix In https://docs.spring.io/spring-boot/docs/2.2.0.BUILD-SNAPSHOT/reference/html/appendix-configuration-metadata.html#configuration-metadata-hints-attributes the examples for configuration metadata hint names in the case of maps were not consistent. --- .../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 d6c079c08174..f42ea38a5d6d 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 @@ -266,7 +266,7 @@ The JSON object contained in the `hints` array can contain the attributes shown | String | The full name of the property to which this hint refers. Names are in lower-case period-separated form (such as `spring.mvc.servlet.path`). - If the property refers to a map (such as `system.contexts`), the hint either applies to the _keys_ of the map (`system.context.keys`) or the _values_ (`system.context.values`) of the map. + If the property refers to a map (such as `system.contexts`), the hint either applies to the _keys_ of the map (`system.contexts.keys`) or the _values_ (`system.contexts.values`) of the map. This attribute is mandatory. | `values`