Add missing semicolon on sample code

See gh-12895
This commit is contained in:
Jienan Duan 2018-04-18 11:00:08 +08:00 committed by Stephane Nicoll
parent 97877c2aab
commit 90ae14ec21
1 changed files with 1 additions and 1 deletions

View File

@ -385,7 +385,7 @@ The `Application.java` file would declare the `main` method, along with the basi
package com.example.myapplication;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class Application {