From 908c9562e564897d902bbdce4c0c0cba756173c7 Mon Sep 17 00:00:00 2001 From: Kazuki Shimizu Date: Sun, 3 Jan 2016 16:13:50 +0900 Subject: [PATCH] Fix invalid port number in doc Closes gh-4867 --- spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 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 c991494f25..f75ee1ddd9 100644 --- a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -628,7 +628,7 @@ context starts. So in this YAML we set a value for `security.user.password` that [source,yaml,indent=0] ---- server: - port: 80000 + port: 8000 --- spring: profiles: default @@ -643,7 +643,7 @@ profile, and it would have to be explicitly reset in all other profiles as neces [source,yaml,indent=0] ---- server: - port: 80000 + port: 8000 security: user: password: weak