Fix typos

This commit is contained in:
Rossen Stoyanchev 2020-03-20 21:14:56 +00:00
parent 09b36380cd
commit 9685380334
1 changed files with 6 additions and 6 deletions

View File

@ -651,17 +651,17 @@ public interface WebClient {
/**
* Provide a function to map specific error status codes to an error
* signal to to be propagated downstream instead of the response.
* <p>By default, if there are not matching status handlers, responses
* signal to be propagated downstream instead of the response.
* <p>By default, if there are no matching status handlers, responses
* with status codes >= 400 are mapped to
* {@link WebClientResponseException} which is created with
* {@link ClientResponse#createException()}.
* <p>To suppress the treatment of a status code as an error and process
* it as a normal response, return {@code Mono.empty()} from the function.
* The response will then propagate downstream for processing.
* <p>To ignore an error response, handle it earlier with a
* {@link ExchangeFilterFunction filter}, or add {@code onErrorResume}
* downstream, for example:
* The response will then propagate downstream to be processed.
* <p>To ignore an error response completely, and propagate neither
* response nor error, use a {@link ExchangeFilterFunction filter}, or
* add {@code onErrorResume} downstream, for example:
* <pre class="code">
* webClient.get()
* .uri("https://abc.com/account/123")