diff --git a/spring-boot/src/main/java/org/springframework/boot/SpringApplication.java b/spring-boot/src/main/java/org/springframework/boot/SpringApplication.java
index 0b4ada8a14..e9337594d3 100644
--- a/spring-boot/src/main/java/org/springframework/boot/SpringApplication.java
+++ b/spring-boot/src/main/java/org/springframework/boot/SpringApplication.java
@@ -80,12 +80,9 @@ import org.springframework.web.context.support.StandardServletEnvironment;
*
* - Create an appropriate {@link ApplicationContext} instance (depending on your
* classpath)
- *
* - Register a {@link CommandLinePropertySource} to expose command line arguments as
* Spring properties
- *
* - Refresh the application context, loading all singleton beans
- *
* - Trigger any {@link CommandLineRunner} beans
*
*
@@ -123,13 +120,10 @@ import org.springframework.web.context.support.StandardServletEnvironment;
*
* - {@link Class} - A Java class to be loaded by {@link AnnotatedBeanDefinitionReader}
*
- *
* - {@link Resource} - An XML resource to be loaded by {@link XmlBeanDefinitionReader},
* or a groovy script to be loaded by {@link GroovyBeanDefinitionReader}
- *
* - {@link Package} - A Java package to be scanned by
* {@link ClassPathBeanDefinitionScanner}
- *
* - {@link CharSequence} - A class name, resource handle or package name to loaded as
* appropriate. If the {@link CharSequence} cannot be resolved to class and does not
* resolve to a {@link Resource} that exists it will be considered a {@link Package}.