From 6047a2c0b0542a8ce19832fcf7a289315f53ab46 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Mon, 30 Apr 2018 16:41:34 +0200 Subject: [PATCH 1/2] Fix typo See gh-12996 --- spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc b/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc index 0a8b4a1352..43ccb04c3f 100644 --- a/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc +++ b/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc @@ -615,7 +615,7 @@ as `final`, indicating that it cannot be subsequently changed. == 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 <> From 50ca33ecd2a6f18c4f4f42f9d754ac60f3f76b6b Mon Sep 17 00:00:00 2001 From: Yaman Jain Date: Sat, 28 Apr 2018 20:59:54 +0530 Subject: [PATCH 2/2] Fix typo Closes gh-12996 --- .../spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 12abc3bb70..20a4df7e30 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 <>