From a4e08beebcfc4c1eb0e41e4d53b28f67664706a0 Mon Sep 17 00:00:00 2001 From: John Tims Date: Sat, 6 Sep 2014 11:13:17 -0400 Subject: [PATCH] Add missing variable to the example in the Loading YAML section Closes gh-1524 --- .../src/main/asciidoc/spring-boot-features.adoc | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index 12dde669b78..151c8845957 100644 --- a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -368,12 +368,13 @@ For example, the following YAML document: [source,yaml,indent=0] ---- - dev: - url: http://dev.bar.com - name: Developer Setup - prod: - url: http://foo.bar.com - name: My Cool App + environments: + dev: + url: http://dev.bar.com + name: Developer Setup + prod: + url: http://foo.bar.com + name: My Cool App ---- Would be transformed into these properties: