From 4f2e788835be45e3ebd32ef8c1885108622c0ab9 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Mon, 4 Mar 2019 15:45:59 +0100 Subject: [PATCH] Fix import in docs Closes gh-16017 --- .../src/main/asciidoc/spring-boot-features.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index 46abcdcd80..032df7c5cf 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -2172,7 +2172,7 @@ If you need to add or customize converters, you can use Spring Boot's [source,java,indent=0] ---- - import org.springframework.boot.autoconfigure.web.HttpMessageConverters; + import org.springframework.boot.autoconfigure.http.HttpMessageConverters; import org.springframework.context.annotation.*; import org.springframework.http.converter.*;