You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by ar...@apache.org on 2019/01/31 10:30:19 UTC

[beam] branch master updated: Update design-your-pipeline.md

This is an automated email from the ASF dual-hosted git repository.

aromanenko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
     new 2af3bee  Update design-your-pipeline.md
     new 2f997b7  Merge pull request #7436: Update design-your-pipeline.md
2af3bee is described below

commit 2af3bee72b21af50a40266c88b6c7a9fe5023db5
Author: J Ross Thomson <39...@users.noreply.github.com>
AuthorDate: Tue Jan 8 08:21:08 2019 -0500

    Update design-your-pipeline.md
    
    Seems like this should be the output of the KeyedPCollectionTuple.
---
 website/src/documentation/pipelines/design-your-pipeline.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/website/src/documentation/pipelines/design-your-pipeline.md b/website/src/documentation/pipelines/design-your-pipeline.md
index 02e5fb1..c04df7f 100644
--- a/website/src/documentation/pipelines/design-your-pipeline.md
+++ b/website/src/documentation/pipelines/design-your-pipeline.md
@@ -214,7 +214,7 @@ PCollection<KV<String, CoGbkResult>> joinedCollection =
                        .and(orderTag, userOrder)
                        .apply(CoGroupByKey.<String>create());
 
-coGbkResultCollection.apply(...);
+joinedCollection.apply(...);
 ```
 
 ## What's next