robertwb commented on a change in pull request #15619:
URL: https://github.com/apache/beam/pull/15619#discussion_r718804757



##########
File path: website/www/site/content/en/documentation/glossary.md
##########
@@ -273,15 +277,15 @@ To learn more, see:
 
 ## Pipe operator (`|`)
 
-Delimits a step in a Python pipeline. For example: `[Final Output PCollection] 
= ([Initial Input PCollection] | [First Transform] | [Second Transform] | 
[Third Transform])`. The output of each transform is passed from left to right 
as input to the next transform. The pipe operator in Python is equivalent to 
the `apply` method in Java (in other words, the pipe applies a transform to a 
PCollection).
+Delimits a step in a Python pipeline. For example: `[Final Output PCollection] 
= ([Initial Input PCollection] | [First Transform] | [Second Transform] | 
[Third Transform])`. The output of each transform is passed from left to right 
as input to the next transform. The pipe operator in Python is equivalent to 
the `apply` method in Java (in other words, the pipe applies a transform to a 
PCollection), and usage is similar to the pipe operator in shell scripts, where 
you can use pipes to chain programs.

Review comment:
       maybe instead of "chain programs" say "pass the output of one program 
into the input of another" to make the analogy more clear. 




-- 
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.

To unsubscribe, e-mail: [email protected]

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


Reply via email to