ClientWebRequestBuilders documentation fix

Issue: SPR-14561
This commit is contained in:
Juergen Hoeller
2016-08-08 13:20:27 +02:00
parent 5531e80724
commit aeec1245eb
2 changed files with 11 additions and 20 deletions

View File

@@ -132,7 +132,7 @@ Mono<Account> response = webClient
.extract(body(Account.class));
----
The above assumes static method imports from `ClientWebRequestBuilder` and `ResponseExtractors`
The above assumes static method imports from `ClientWebRequestBuilders` and `ResponseExtractors`
that enable a fluent syntax. The same can also be done with RxJava using static imports from
`RxJava1ClientWebRequestBuilder` and `RxJava1ResponseExtractors` instead: