=doc Fix typos in FlowDocTest & FlowDocSpec

This commit is contained in:
Stanislav Savulchik 2016-02-29 22:51:59 +06:00
parent 31e96ac90b
commit ce75948984
2 changed files with 2 additions and 2 deletions

View file

@ -246,7 +246,7 @@ public class FlowDocTest extends AbstractJavaTest {
CompletableFuture<Optional<Integer>> r5 = flow.to(sink).runWith(source, mat);
Pair<CompletableFuture<Optional<Integer>>, CompletionStage<Integer>> r6 = flow.runWith(source, sink, mat);
// Using more complext combinations
// Using more complex combinations
RunnableGraph<Pair<CompletableFuture<Optional<Integer>>, Cancellable>> r7 =
source.viaMat(flow, Keep.both()).to(sink);