Merge pull request #26980 from hunjipo
* pr/26980: Fix typo in code example Closes gh-26980
This commit is contained in:
commit
93244e9f9d
|
|
@ -181,7 +181,7 @@ The following example shows how to access form data:
|
|||
[source,java,role="primary"]
|
||||
.Java
|
||||
----
|
||||
Mono<MultiValueMap<String, String> map = request.formData();
|
||||
Mono<MultiValueMap<String, String>> map = request.formData();
|
||||
----
|
||||
[source,kotlin,role="secondary"]
|
||||
.Kotlin
|
||||
|
|
@ -194,7 +194,7 @@ The following example shows how to access multipart data as a map:
|
|||
[source,java,role="primary"]
|
||||
.Java
|
||||
----
|
||||
Mono<MultiValueMap<String, Part> map = request.multipartData();
|
||||
Mono<MultiValueMap<String, Part>> map = request.multipartData();
|
||||
----
|
||||
[source,kotlin,role="secondary"]
|
||||
.Kotlin
|
||||
|
|
|
|||
Loading…
Reference in New Issue