From c4cb8317704add37b5d1a8070d943ecad3152578 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Sun, 28 Aug 2016 11:02:19 +0200 Subject: [PATCH] Polish --- 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 1abe153083a..412fd6006d7 100644 --- a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -891,8 +891,8 @@ be used by IDEs. See the <> appendix for details. [[boot-features-external-config-3rd-party-configuration]] ==== Third-party configuration As well as using `@ConfigurationProperties` to annotate a class, you can also use it -on `@Bean` methods. This can be particularly useful when you want to bind properties to -third-party components that are outside of your control. +on public `@Bean` methods. This can be particularly useful when you want to bind +properties to third-party components that are outside of your control. To configure a bean from the `Environment` properties, add `@ConfigurationProperties` to its bean registration: