From 1f91ae541faacd0bce0ff008b2e123556fff743e Mon Sep 17 00:00:00 2001 From: DK Lee Date: Thu, 12 Apr 2018 12:25:20 +0900 Subject: [PATCH] Fix WebClient example constructor name Closes gh-12842 --- .../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 2289ac7d14..604a3ee2f1 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 @@ -5549,7 +5549,7 @@ The following code shows a typical example: private final WebClient webClient; - public MyBean(WebClient.Builder webClientBuilder) { + public MyService(WebClient.Builder webClientBuilder) { this.webClient = webClientBuilder.baseUrl("http://example.org").build(); }