Skip to content

Commit f45a852

Browse files
hunjiposnicoll
authored andcommitted
Fix typo in code example
See gh-26980
1 parent 4203e90 commit f45a852

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/docs/asciidoc/web/webflux-functional.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ The following example shows how to access form data:
181181
[source,java,role="primary"]
182182
.Java
183183
----
184-
Mono<MultiValueMap<String, String> map = request.formData();
184+
Mono<MultiValueMap<String, String>> map = request.formData();
185185
----
186186
[source,kotlin,role="secondary"]
187187
.Kotlin
@@ -194,7 +194,7 @@ The following example shows how to access multipart data as a map:
194194
[source,java,role="primary"]
195195
.Java
196196
----
197-
Mono<MultiValueMap<String, Part> map = request.multipartData();
197+
Mono<MultiValueMap<String, Part>> map = request.multipartData();
198198
----
199199
[source,kotlin,role="secondary"]
200200
.Kotlin

0 commit comments

Comments
 (0)