From 681921fd872a45b49aa37b45ba77c54a007012b5 Mon Sep 17 00:00:00 2001 From: dreis2211 Date: Sun, 24 Sep 2017 13:41:46 +0200 Subject: [PATCH] Typo in external config documentation Closes gh-10411 --- spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 e4eb731bf9..00b5fc8c7e 100644 --- a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -980,7 +980,7 @@ does not inject other beans from the context. Having said that, The `@EnableConfigurationProperties` annotation is _also_ automatically applied to your project so that any _existing_ bean annotated with `@ConfigurationProperties` will be configured from the `Environment`. You could shortcut `MyConfiguration` above by making sure -`FooProperties` is a already a bean: +`FooProperties` is already a bean: [source,java,indent=0] ----