From 7c9ab5ced29a9032ef58459361364ee910898986 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Mon, 23 Mar 2015 09:31:08 -0700 Subject: [PATCH] Minor documentation polish --- .../src/main/asciidoc/production-ready-features.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc b/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc index d9e8476ec2..eca4e004c7 100644 --- a/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc @@ -355,7 +355,7 @@ You can then refer to your Gradle project's properties via placeholders, e.g. ---- NOTE: Gradle's `expand` method uses Groovy's `SimpleTemplateEngine` which transforms -`${..}` tokens. This `${..}` style conflicts with Spring's own property placeholder +`${..}` tokens. The `${..}` style conflicts with Spring's own property placeholder mechanism. To use Spring property placeholders together with automatic expansion the Spring property placeholders need to be escaped like `\${..}`.