Skip to content

Commit

Permalink
typos fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
anandnalya committed Sep 5, 2011
1 parent 27320c1 commit 9ddd32e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion S4WordCount/src/test/s4/SentenceReceiverPE.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class SentenceReceiverPE extends AbstractPE {
* @param sentence
*/
public void processEvent(Sentence sentence){
System.out.println("Recieved Sentence: " + sentence);
System.out.println("Received Sentence: " + sentence);
}

@Override
Expand Down
4 changes: 2 additions & 2 deletions S4WordCount/src/test/s4/WordReceiverPE.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public void setDispatcher(Dispatcher dispatcher) {
* Word received on <code>RawWords *</code> stream.
*/
public void processEvent(Word word) {
System.out.println("Recieved: " + word);
System.out.println("Received: " + word);

// keep building the sentence
builder.append(' ').append(word.getString().trim());
Expand All @@ -55,7 +55,7 @@ public void processEvent(Word word) {
* Sentence recieved on <code>Sentence *<code> stream.
*/
public void processEvent(Sentence sentence) {
System.out.println("Recieved Sentence(WordReceiverPE) : " + sentence);
System.out.println("Received Sentence(WordReceiverPE) : " + sentence);
}

@Override
Expand Down

0 comments on commit 9ddd32e

Please sign in to comment.