From 9d4e940f56ec0d440f703894dc7eb95f2c1ecdaf Mon Sep 17 00:00:00 2001 From: Andy Piper Date: Sat, 8 Mar 2014 15:56:14 +0000 Subject: [PATCH] fixup yaml codeblock --- spring-boot/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-boot/README.md b/spring-boot/README.md index 89f2ba30a29..fb5c5be3f68 100644 --- a/spring-boot/README.md +++ b/spring-boot/README.md @@ -300,15 +300,15 @@ environments.prod.name=My Cool App YAML lists are represented as comma-separated values (useful for simple String values) and also as property keys with `[index]` dereferencers, for example this YAML: - ```yaml +```yaml servers: - dev.bar.com - foo.bar.com - ``` +``` Would be transformed into these properties: -```text +``` servers=dev.bar.com,foo.bar.com servers[0]=dev.bar.com servers[1]=foo.bar.com