Merge pull request #19918 from savulchik/fix-typos

=doc Fix typos in FlowDocTest & FlowDocSpec
This commit is contained in:
Martynas Mickevičius 2016-03-02 15:06:52 +01:00
commit 1029f093bf
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);