Use HTTPS in YAML exmaple

See gh-16316
This commit is contained in:
Andy Wilkinson 2019-03-27 12:23:55 +00:00
parent 35572b6aae
commit cf2b0bc8c2

View File

@ -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
----