Skip to content

Commit

Permalink
Fixes a few javadoc warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Joel Håkansson committed Dec 11, 2015
1 parent 3c80a9b commit 5d6b444
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ public Map<String, CWHyphenationUnit> getDictionary() {
* @param word the input word
* @param beginLimit the shortest substring at the beginning of the word to evaluate against the dictionary
* @param endLimit the shortest substring at the end of the word to evaluate against the dictionary
* @param evaluate if true, return the most likely solution based on its frequency
* @return returns the word, hyphenated at compound boundaries
*/
public String findCompounds(String word, int beginLimit, int endLimit, double threshold) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public boolean hasHyphenation() {
/**
* Hyphenates the supplied word, using the hyphenation points in this unit
* @param word
* @return
* @return returns the hyphenated string
*/
public String hyphenate(String word) {
if (hasHyphenation()) {
Expand Down

0 comments on commit 5d6b444

Please sign in to comment.