From bf15276af1b1e0ce5fe3cd9325a3e5bd3b0407c5 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Mon, 23 Mar 2020 15:27:08 +0100 Subject: [PATCH] Fix import in constructor binding example Closes gh-20378 --- .../src/main/asciidoc/spring-boot-features.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index 4921ba6a1c..9eeb1e25b7 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -855,7 +855,7 @@ The example in the previous section can be rewritten in an immutable fashion as import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.boot.context.properties.ConstructorBinding; - import org.springframework.boot.context.properties.DefaultValue; + import org.springframework.boot.context.properties.bind.DefaultValue; @ConstructorBinding @ConfigurationProperties("acme")