Fix WebClient example constructor name

Closes gh-12842
This commit is contained in:
DK Lee
2018-04-12 12:25:20 +09:00
committed by Stephane Nicoll
parent 62a8f60bb3
commit 1f91ae541f

View File

@@ -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();
}