Closes gh-22717
This commit is contained in:
Stephane Nicoll
2019-04-01 14:01:41 +02:00
parent 7882a33e07
commit de2a01eee4

View File

@@ -150,7 +150,7 @@ The following example shows how to access multiparts, one at a time, in streamin
====
[source,java]
----
Flux<Part> parts = request.body(BodyExtractos.toParts());
Flux<Part> parts = request.body(BodyExtractors.toParts());
----
====