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

jbonofre 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 f63eef1  Typo fix in MinimalWordCount example
f63eef1 is described below

commit f63eef1399ef82f651195dce97ba9d162206d0f0
Author: Jean-Baptiste Onofré <[email protected]>
AuthorDate: Sun Jan 28 14:48:55 2018 +0100

    Typo fix in MinimalWordCount example
---
 .../java/src/main/java/org/apache/beam/examples/MinimalWordCount.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/examples/java/src/main/java/org/apache/beam/examples/MinimalWordCount.java 
b/examples/java/src/main/java/org/apache/beam/examples/MinimalWordCount.java
index 1f3fa28..50b95ed 100644
--- a/examples/java/src/main/java/org/apache/beam/examples/MinimalWordCount.java
+++ b/examples/java/src/main/java/org/apache/beam/examples/MinimalWordCount.java
@@ -90,8 +90,8 @@ public class MinimalWordCount {
     // This example reads a public data set consisting of the complete works 
of Shakespeare.
     p.apply(TextIO.read().from("gs://apache-beam-samples/shakespeare/*"))
 
-        // Concept #2: Apply a FlatMapElements transform to our PCollection of 
text lines.
-        // This transform split the lines in PCollection<String>, where each 
element is an
+        // Concept #2: Apply a FlatMapElements transform the PCollection of 
text lines.
+        // This transform splits the lines in PCollection<String>, where each 
element is an
         // individual word in Shakespeare's collected texts.
         .apply(FlatMapElements
             .into(TypeDescriptors.strings())

-- 
To stop receiving notification emails like this one, please contact
[email protected].

Reply via email to