Indenting SpringApplication javadoc code

Closes gh-8039
This commit is contained in:
Rafael Rollo 2017-01-19 19:32:40 -02:00 committed by Stephane Nicoll
parent 2c5c539bf1
commit 6fba1381c1
1 changed files with 4 additions and 3 deletions

View File

@ -96,10 +96,11 @@ import org.springframework.web.context.support.StandardServletEnvironment;
* @EnableAutoConfiguration
* public class MyApplication {
*
* // ... Bean definitions
* // ... Bean definitions
*
* public static void main(String[] args) throws Exception {
* SpringApplication.run(MyApplication.class, args);
* public static void main(String[] args) throws Exception {
* SpringApplication.run(MyApplication.class, args);
* }
* }
* </pre>
*