From cf2b0bc8c2e0229e386cad6ef71845ba91e6f8b7 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Wed, 27 Mar 2019 12:23:55 +0000 Subject: [PATCH] Use HTTPS in YAML exmaple See gh-16316 --- .../src/main/asciidoc/spring-boot-features.adoc | 8 ++++---- 1 file changed, 4 insertions(+), 4 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 12cf3f8595a..59d9938fd93 100644 --- a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -558,10 +558,10 @@ For example, the following YAML document: ---- environments: dev: - url: http://dev.example.com + url: https://dev.example.com name: Developer Setup prod: - url: http://another.example.com + url: https://another.example.com name: My Cool App ---- @@ -569,9 +569,9 @@ Would be transformed into these properties: [source,properties,indent=0] ---- - environments.dev.url=http://dev.example.com + environments.dev.url=https://dev.example.com environments.dev.name=Developer Setup - environments.prod.url=http://another.example.com + environments.prod.url=https://another.example.com environments.prod.name=My Cool App ----