Fix typo in document example (#2010)

This commit is contained in:
Junho, Kim
2021-08-19 13:55:23 +09:00
committed by GitHub
parent 1fbfd04b7c
commit 2b17d08ee1

View File

@@ -208,7 +208,7 @@ By default, Maven compiles sources from `src/main/java`, so you need to create t
@EnableAutoConfiguration
public class Example {
private static final Logger log = LoggerFactory.getLogger(Backend.class);
private static final Logger log = LoggerFactory.getLogger(Example.class);
@RequestMapping("/")
String home() {