From 8b7f318d6bd2590f2fd4734f262c071209514459 Mon Sep 17 00:00:00 2001 From: Thomas Traude Date: Mon, 18 May 2015 15:27:05 +0200 Subject: [PATCH] Fix typo in javadoc Closes gh-2997 --- .../boot/context/event/ApplicationReadyEvent.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot/src/main/java/org/springframework/boot/context/event/ApplicationReadyEvent.java b/spring-boot/src/main/java/org/springframework/boot/context/event/ApplicationReadyEvent.java index 0401df58052..57be0bda894 100644 --- a/spring-boot/src/main/java/org/springframework/boot/context/event/ApplicationReadyEvent.java +++ b/spring-boot/src/main/java/org/springframework/boot/context/event/ApplicationReadyEvent.java @@ -22,7 +22,7 @@ import org.springframework.context.ConfigurableApplicationContext; /** * Event published as late as conceivably possible to indicate that the application is * ready to service requests. The source of the event is the {@link SpringApplication} - * itself, but beware of modifying its internal state since since all initialization steps + * itself, but beware of modifying its internal state since all initialization steps * will have been completed by then. * * @author Stephane Nicoll