Skip to content

Commit 5830aac

Browse files
committed
Omit parameter names in REST Clients section of reference docs
For consistency with other examples, this commit omits `method` parameter names in the "Migrating from RestTemplate to RestClient" section of the reference docs. Closes gh-32335
1 parent 0eb61c0 commit 5830aac

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

framework-docs/modules/ROOT/pages/integration/rest-clients.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -852,17 +852,17 @@ It can be used to migrate from the latter to the former.
852852
.toEntity(ParameterizedTypeReference)` footnote:request-entity[]
853853

854854

855-
| `execute(String, HttpMethod method, RequestCallback, ResponseExtractor, Object...)`
855+
| `execute(String, HttpMethod, RequestCallback, ResponseExtractor, Object...)`
856856
| `method(HttpMethod)
857857
.uri(String, Object...)
858858
.exchange(ExchangeFunction)`
859859

860-
| `execute(String, HttpMethod method, RequestCallback, ResponseExtractor, Map)`
860+
| `execute(String, HttpMethod, RequestCallback, ResponseExtractor, Map)`
861861
| `method(HttpMethod)
862862
.uri(String, Map)
863863
.exchange(ExchangeFunction)`
864864

865-
| `execute(URI, HttpMethod method, RequestCallback, ResponseExtractor)`
865+
| `execute(URI, HttpMethod, RequestCallback, ResponseExtractor)`
866866
| `method(HttpMethod)
867867
.uri(URI)
868868
.exchange(ExchangeFunction)`

0 commit comments

Comments
 (0)