From 913b6020d66db509681149912d74db5e09e7a94b Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Tue, 18 Mar 2014 11:26:15 -0700 Subject: [PATCH] Minor doc polish --- spring-boot-docs/src/main/asciidoc/howto.adoc | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/spring-boot-docs/src/main/asciidoc/howto.adoc b/spring-boot-docs/src/main/asciidoc/howto.adoc index 5c0da7e6bf0..1d880e95aa5 100644 --- a/spring-boot-docs/src/main/asciidoc/howto.adoc +++ b/spring-boot-docs/src/main/asciidoc/howto.adoc @@ -129,6 +129,9 @@ might have. and then the Spring Boot banner will not be printed on startup, and the application will not be a web application. +NOTE: The example above also demonstrates how flexible binding allows the use of +underscores (`_`) as well as dashes (`-`) in property names. + [[howto-change-the-location-of-external-properties]] === Change the location of external properties of an application By default properties from different sources are added to the Spring `Environment` in a @@ -738,11 +741,11 @@ For example, using Maven: ---- -Spring Boot has a `LoggingSystem` abstraction that attempts to select a system depending -on the content of the classpath. If Logback is available it is the first choice. So if -you put a `logback.xml` in the root of your classpath it will be picked up from there. -Spring Boot provides a default base configuration that you can include if you just want -to set levels, e.g. +Spring Boot has a `LoggingSystem` abstraction that attempts to configure logging based on +the content of the classpath. If Logback is available it is the first choice. So if you +put a `logback.xml` in the root of your classpath it will be picked up from there. Spring +Boot provides a default base configuration that you can include if you just want to set +levels, e.g. [source,xml,indent=0,subs="verbatim,quotes,attributes"] ----