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