Browse Source

Fix WebClient example constructor name

Closes gh-12842
pull/12890/head
DK Lee 8 years ago committed by Stephane Nicoll
parent
commit
1f91ae541f
  1. 2
      spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc

2
spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc

@ -5549,7 +5549,7 @@ The following code shows a typical example: @@ -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();
}

Loading…
Cancel
Save