From 9ed7674ab0494f9c6d21957a7b0b055ab69e7613 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Tue, 16 Nov 2021 08:55:52 +0100 Subject: [PATCH] Polish "Fix yaml sample format" See gh-28671 --- .../src/docs/asciidoc/features/external-config.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 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 14589215f31e..f8d29f5fdc23 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 @@ -785,9 +785,9 @@ This style of configuration works particularly well with the `SpringApplication` ---- my: service: - remote-address: "192.168.1.1" + remote-address: 192.168.1.1 security: - username: "admin" + username: admin roles: - USER - ADMIN