Skip to content

Commit 93244e9

Browse files
committed
Merge pull request #26980 from hunjipo
* pr/26980: Fix typo in code example Closes gh-26980
2 parents 4203e90 + f45a852 commit 93244e9

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)