From 33634157122393e81743024ad8b837f0aee89b50 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Tue, 29 Mar 2016 10:56:46 +0200 Subject: [PATCH] Polish documentation Add a reference ot underscore notation Closes gh-5268 --- spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc | 3 +++ 1 file changed, 3 insertions(+) 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 75c5a718849..28cbe646a20 100644 --- a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -840,6 +840,9 @@ The following properties names can all be used: |`person.first-name` |Dashed notation, recommended for use in `.properties` and `.yml` files. +|`person.first_name` +|Underscore notation, alternative format for use in `.properties` and `.yml` files. + |`PERSON_FIRST_NAME` |Upper case format. Recommended when using a system environment variables. |===