damondouglas commented on a change in pull request #15057:
URL: https://github.com/apache/beam/pull/15057#discussion_r658386948
##########
File path: website/www/site/content/en/documentation/programming-guide.md
##########
@@ -546,6 +602,12 @@ a branching pipeline, like so:
[PCollection of 'B' names] = [PCollection of database table rows] | [Transform
B]
{{< /highlight >}}
+{{< highlight go >}}
+[PCollection of database table rows] = beam.ParDo(s, [Read Transform],
[Database Table Reader])
Review comment:
Suggested change:
```
[PCollection of database table rows] = beam.ParDo(s, [Read Transform],
[Database Table Reader])
```
to
```
[PCollection of database table rows] = beam.ParDo(scope, [Read Transform],
[Database Table Reader])
```
--
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]