From d804749c2e3944f4480cfb0497039927e384ef6d Mon Sep 17 00:00:00 2001 From: Lee Jiwon Date: Sun, 22 Mar 2026 12:14:36 +0900 Subject: [PATCH] Fix duplicated words in external-config documentation See gh-49700 Signed-off-by: Lee Jiwon --- .../modules/reference/pages/features/external-config.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/features/external-config.adoc b/documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/features/external-config.adoc index 5915325fd6b..99d59dcf3c1 100644 --- a/documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/features/external-config.adoc +++ b/documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/features/external-config.adoc @@ -940,7 +940,7 @@ my.service.security= Will be bound as `new MyProperties(true, null, new Security(null, null, List.of("USER")))` ==== -If you want to always bind a a non-null instance of `Security`, even when properties are missing, you can use use an empty javadoc:org.springframework.boot.context.properties.bind.DefaultValue[format=annotation] annotation: +If you want to always bind a non-null instance of `Security`, even when properties are missing, you can use an empty javadoc:org.springframework.boot.context.properties.bind.DefaultValue[format=annotation] annotation: include-code::nonnull/MyProperties[tag=*]