From d6b60046ceef62e48420c9cb9c04f51a6339635b Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Tue, 9 Aug 2022 14:15:30 +0100 Subject: [PATCH] Correct description of @RequestParam with WebFlux See gh-28944 --- src/docs/asciidoc/web/webflux.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/docs/asciidoc/web/webflux.adoc b/src/docs/asciidoc/web/webflux.adoc index e451ec7f165..e99aeebc698 100644 --- a/src/docs/asciidoc/web/webflux.adoc +++ b/src/docs/asciidoc/web/webflux.adoc @@ -1851,8 +1851,8 @@ and others) and is equivalent to `required=false`. | For access to name-value pairs in URI path segments. See <>. | `@RequestParam` -| For access to Servlet request parameters. Parameter values are converted to the declared - method argument type. See <>. +| For access to query parameters. Parameter values are converted to the declared method argument + type. See <>. Note that use of `@RequestParam` is optional -- for example, to set its attributes. See "`Any other argument`" later in this table.