From 6d79599d99b6a503121338c42badcf9deb087931 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Tue, 16 Nov 2021 08:47:53 +0100 Subject: [PATCH] Polish "Fix yaml sample format in reference doc" See gh-28670 --- .../src/docs/asciidoc/features/external-config.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/features/external-config.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/features/external-config.adoc index 6fc676b7a88a..df6a2d4955c1 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/features/external-config.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/features/external-config.adoc @@ -472,11 +472,11 @@ For example, the following file has two logical documents: ---- spring: application: - name: "MyApp" + name: MyApp --- spring: application: - name: "MyCloudApp" + name: MyCloudApp config: activate: on-cloud-platform: kubernetes @@ -488,8 +488,8 @@ For `application.properties` files a special `#---` comment is used to mark the ---- spring.application.name=MyApp #--- - spring.config.activate.on-cloud-platform=kubernetes spring.application.name=MyCloudApp + spring.config.activate.on-cloud-platform=kubernetes ---- NOTE: Property file separators must not have any leading whitespace and must have exactly three hyphen characters.