We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4203e90 + f45a852 commit 93244e9Copy full SHA for 93244e9
src/docs/asciidoc/web/webflux-functional.adoc
@@ -181,7 +181,7 @@ The following example shows how to access form data:
181
[source,java,role="primary"]
182
.Java
183
----
184
-Mono<MultiValueMap<String, String> map = request.formData();
+Mono<MultiValueMap<String, String>> map = request.formData();
185
186
[source,kotlin,role="secondary"]
187
.Kotlin
@@ -194,7 +194,7 @@ The following example shows how to access multipart data as a map:
194
195
196
197
-Mono<MultiValueMap<String, Part> map = request.multipartData();
+Mono<MultiValueMap<String, Part>> map = request.multipartData();
198
199
200
0 commit comments