damondouglas commented on a change in pull request #15057:
URL: https://github.com/apache/beam/pull/15057#discussion_r658386639



##########
File path: website/www/site/content/en/documentation/programming-guide.md
##########
@@ -522,6 +572,12 @@ together transforms to create a pipeline that successively 
modifies input data:
               | [Third Transform])
 {{< /highlight >}}
 
+{{< highlight go >}}
+[Second PCollection] := beam.ParDo(s, [First Transform], [Initial Input 
PCollection])
+[Third PCollection] := beam.ParDo(s, [Second Transform], [Second PCollection])
+[Final Output PCollection] := beam.ParDo(s, [Third Transform], [Third 
PCollection])

Review comment:
       Suggested change:
   
   ```
   [Final Output PCollection] := beam.ParDo(s, [Third Transform], [Third 
PCollection])
   ```
   
   to
   
   ```
   [Final Output PCollection] := beam.ParDo(scope, [Third Transform], [Third 
PCollection])
   ```




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to