From 26345d39003514348ca0be2f9c350c92b5cf3ef7 Mon Sep 17 00:00:00 2001 From: Janne Valkealahti Date: Wed, 3 Oct 2018 10:58:23 +0100 Subject: [PATCH] Polish docs This commit replaces tabs to spaces in a yaml example for configuring endpoint web exposure include. Closes gh-14670 --- .../src/main/asciidoc/production-ready-features.adoc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc index bbfede2651..e38c8a1136 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc @@ -349,10 +349,10 @@ exclude) all endpoints, as shown in the following example: [source,yaml,indent=0] ---- management: - endpoints: - web: - exposure: - include: "*" + endpoints: + web: + exposure: + include: "*" ---- ====