Browse Source

Fix minor typo in RestClient

Closes gh-35723
Signed-off-by: Anton Xu <anton-xu@hotmail.com>
pull/35732/head
Anton Xu 3 months ago committed by Sébastien Deleuze
parent
commit
01a58a253b
  1. 4
      spring-web/src/main/java/org/springframework/web/client/RestClient.java

4
spring-web/src/main/java/org/springframework/web/client/RestClient.java

@ -904,7 +904,7 @@ public interface RestClient { @@ -904,7 +904,7 @@ public interface RestClient {
/**
* Provide a function to map specific error status codes to an error handler.
* <p>By default, if there are no matching status handlers, responses with
* status codes &gt;= 400 wil throw a {@link RestClientResponseException}.
* status codes &gt;= 400 will throw a {@link RestClientResponseException}.
* <p>Note that {@link IOException IOExceptions},
* {@link java.io.UncheckedIOException UncheckedIOExceptions}, and
* {@link org.springframework.http.converter.HttpMessageNotReadableException HttpMessageNotReadableExceptions}
@ -921,7 +921,7 @@ public interface RestClient { @@ -921,7 +921,7 @@ public interface RestClient {
/**
* Provide a function to map specific error status codes to an error handler.
* <p>By default, if there are no matching status handlers, responses with
* status codes &gt;= 400 wil throw a {@link RestClientResponseException}.
* status codes &gt;= 400 will throw a {@link RestClientResponseException}.
* <p>Note that {@link IOException IOExceptions},
* {@link java.io.UncheckedIOException UncheckedIOExceptions}, and
* {@link org.springframework.http.converter.HttpMessageNotReadableException HttpMessageNotReadableExceptions}

Loading…
Cancel
Save