From 668993c4bf0b672cb869c458299daa54e83c09ad Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Thu, 6 Oct 2016 13:35:21 +0200 Subject: [PATCH] Fix typo Closes gh-7117 --- .../java/org/springframework/boot/SpringBootConfiguration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot/src/main/java/org/springframework/boot/SpringBootConfiguration.java b/spring-boot/src/main/java/org/springframework/boot/SpringBootConfiguration.java index b8282bed96..86d6119285 100644 --- a/spring-boot/src/main/java/org/springframework/boot/SpringBootConfiguration.java +++ b/spring-boot/src/main/java/org/springframework/boot/SpringBootConfiguration.java @@ -31,7 +31,7 @@ import org.springframework.context.annotation.Configuration; * automatically (for example in tests). *

* Application should only ever include one - * {@code @SpringApplicationConfiguration} and most idiomatic Spring Boot applications + * {@code @SpringBootConfiguration} and most idiomatic Spring Boot applications * will inherit it from {@code @SpringBootApplication}. * * @author Phillip Webb