Skip to content

Commit 38fa050

Browse files
committed
Updated ignore file.
2 parents cceedcc + 3ec2e59 commit 38fa050

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

1_word_count/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public static class Tokenizer implements FlatMapFunction<String, Tuple2<String,
110110
}
111111
}
112112
```
113-
Now we call the `map` operation and pass an instance of the newly created `Tokenizer` class as an argument. Then we need to group by the word and sum up by the value which is shown in the following code.
113+
Now we call the `map` operation and pass an instance of the newly created `Tokenizer` class as an argument. Then we need to group by the word and sum up by the value which, is shown in the following code.
114114

115115
```
116116
// tokenize the lines from textLines to (word, 1), groups and then counts
@@ -144,7 +144,7 @@ To build the JAR using IntelliJ follow these steps;
144144

145145
Once the JAR is built, we need a `txt` file to read as an input. A file located in this repository called `pride_and_prejudice.txt` will be used as an input. This file can be downloaded from [Project Gutenberg](https://www.gutenberg.org/ebooks/1342).
146146

147-
Now open a terminal and execute the following commands to run the JAR file on Apache Flink. First start a new cluster by typing the following in the terminal `flink/build-target/bin/start-cluster.sh`. After open a browser and go to `http://localhost:8081/` to make sure it's running.
147+
Now open a terminal and execute the following commands to run the JAR file on Apache Flink. First start a new cluster by typing the following command in the terminal `flink/build-target/bin/start-cluster.sh`. After doing so open a browser and go to `http://localhost:8081/` to make sure that the cluster is running.
148148

149149
*NOTE: Make sure the paths match your locations on your machine.*
150150

0 commit comments

Comments
 (0)