Skip to content

Commit

Permalink
[Documanation] Fix constructor name of WordWithCount example.
Browse files Browse the repository at this point in the history
This closes apache#1325
  • Loading branch information
jaoki authored and mjsax committed Nov 13, 2015
1 parent 824074a commit 955ce53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/apis/programming_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -1574,9 +1574,9 @@ public class WordWithCount {
public String word;
public int count;

public WordCount() {}
public WordWithCount() {}

public WordCount(String word, int count) {
public WordWithCount(String word, int count) {
this.word = word;
this.count = count;
}
Expand Down

0 comments on commit 955ce53

Please sign in to comment.