diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc index 12abc3bb709..20a4df7e30b 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc @@ -547,7 +547,7 @@ TIP: Notice how using constructor injection lets the `riskAssessor` field be mar == Using the @SpringBootApplication Annotation Many Spring Boot developers like their apps to use auto-configuration, component scan and be able to define extra configuration on their "application class". A single -`@SpringBootApplication` annotation can be used to enable those tree features, that is: +`@SpringBootApplication` annotation can be used to enable those three features, that is: * `@EnableAutoConfiguration`: enable <>