diff --git a/framework-docs/src/docs/asciidoc/integration/rest-clients.adoc b/framework-docs/src/docs/asciidoc/integration/rest-clients.adoc index 575f1593e4..b85fe2ae47 100644 --- a/framework-docs/src/docs/asciidoc/integration/rest-clients.adoc +++ b/framework-docs/src/docs/asciidoc/integration/rest-clients.adoc @@ -417,7 +417,7 @@ method parameters: | Dynamically set the HTTP method for the request, overriding the annotation's `method` attribute | `@RequestHeader` -| Add a request header or mutliple headers. The argument may be a `Map` or +| Add a request header or multiple headers. The argument may be a `Map` or `MultiValueMap` with multiple headers, a `Collection` of values, or an individual value. Type conversion is supported for non-String values. @@ -432,7 +432,7 @@ method parameters: through the configured `ReactiveAdapterRegistry`. | `@RequestParam` -| Add a request parameter or mutliple parameters. The argument may be a `Map` +| Add a request parameter or multiple parameters. The argument may be a `Map` or `MultiValueMap` with multiple parameters, a `Collection` of values, or an individual value. Type conversion is supported for non-String values. @@ -446,7 +446,7 @@ method parameters: a Spring `Part`, or Reactive Streams `Publisher` of any of the above. | `@CookieValue` -| Add a cookie or mutliple cookies. The argument may be a `Map` or +| Add a cookie or multiple cookies. The argument may be a `Map` or `MultiValueMap` with multiple cookies, a `Collection` of values, or an individual value. Type conversion is supported for non-String values.