From bea505d32eed1c2d5b1ad5d937e402e844a9f333 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Sun, 18 Dec 2022 12:04:19 +0100 Subject: [PATCH] Fix typos in reference manual --- .../src/docs/asciidoc/integration/rest-clients.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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.